diff options
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -22,8 +22,6 @@ #ifndef GAME_H #define GAME_H -//#include <memory> - #include "SDL.h" #include "configlistener.h" @@ -32,6 +30,8 @@ extern std::string map_path; extern volatile int fps; extern volatile int tick_time; +class WindowMenu; + class Game : public ConfigListener { public: @@ -56,6 +56,8 @@ class Game : public ConfigListener SDL_TimerID mLogicCounterId; SDL_TimerID mSecondsCounterId; + + WindowMenu *mWindowMenu; }; /** |