diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-16 08:11:00 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-16 08:19:53 -0500 |
commit | 034c802edd39be537a626c1961272a6137b5980e (patch) | |
tree | d9b042878d8a8f573cf09744814270a32b920b89 /src/ui.hpp | |
parent | f892f3c3afb4a3795dc3ba5c26cacd1f8088b902 (diff) |
text clears with dialog box
Diffstat (limited to 'src/ui.hpp')
-rw-r--r-- | src/ui.hpp | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -22,15 +22,15 @@ #define SYSTEM_UI_HPP_ #include "events/render.hpp" +#include "events/ui.hpp" #include <entityx/entityx.h> #include <GL/glew.h> -#include <SDL2/SDL.h> -#include <SDL2/SDL_opengl.h> #include <vector> -class UISystem : public entityx::System<UISystem> +class UISystem : public entityx::System<UISystem>, + public entityx::Receiver<UISystem> { public: void configure(entityx::EntityManager&, entityx::EventManager&) final; @@ -39,6 +39,8 @@ public: entityx::EventManager&, entityx::TimeDelta) final; + void receive(const HideDialog &hd); + void createDialogBox(float x, float y, float w, float h); private: @@ -48,6 +50,7 @@ private: }; std::vector<Box> m_boxes; + bool m_clear_boxes = false; NewRenderEvent generateDialogBox(Box& box); }; |