From 1efe681967cc764db3185134e0750349061a6e41 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 20 Mar 2025 23:22:51 +0000 Subject: Support capturing and reacting to ImGui window closure --- ui/gameMainSelector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/gameMainSelector.h') diff --git a/ui/gameMainSelector.h b/ui/gameMainSelector.h index e6a86d2..8c2be4b 100644 --- a/ui/gameMainSelector.h +++ b/ui/gameMainSelector.h @@ -20,13 +20,13 @@ public: virtual bool click(const SDL_MouseButtonEvent &, const Ray &); virtual bool move(const SDL_MouseMotionEvent &, const Ray &); virtual bool handleInput(const SDL_Event &); - virtual void render(); + virtual void render(bool & open); virtual void render(const SceneShader &, const Frustum &) const; }; GameMainSelector(const Camera * c); - void render() const override; + void render() override; void render(const SceneShader & shader, const Frustum &) const override; bool handleInput(const SDL_Event & e) override; -- cgit v1.2.3