diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2022-12-05 22:55:40 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2022-12-05 22:55:40 +0100 |
commit | 30f488cdcb88dad5dd1df425588cb6a7fd206bb5 (patch) | |
tree | ccd606c44bb2a6ab028548e21463b08c8c92577b /src/states/titleState.h | |
parent | bf34d835e4ea49bd4ef2e5de2b1fea2fd3c95adc (diff) |
Sketch ImGUI:
- Still needs font rendering
Diffstat (limited to 'src/states/titleState.h')
-rw-r--r-- | src/states/titleState.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/states/titleState.h b/src/states/titleState.h index 8b914d8..83339f8 100644 --- a/src/states/titleState.h +++ b/src/states/titleState.h @@ -2,8 +2,10 @@ #define STATES_TITLESTATE_H #include "../states.h" +#include "../ui.h" class TitleState : public State{ + UI ui; public: TitleState(StateStack &stack, State::Context context); virtual void update(sf::Time dt) override; |