diff options
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -24,9 +24,10 @@ #include <string> -#include "gui/windowmenu.h" - class Map; +class MinimapWindow; +class MiniStatusWindow; +class WindowMenu; /** * The main class responsible for running the game. The game starts after you @@ -77,8 +78,7 @@ class Game /** * Update the key shortcuts in the window menu. */ - void updateWindowMenuCaptions() - { mWindowMenu->updatePopUpCaptions(); } + void updateWindowMenuCaptions(); void videoResized(int width, int height); @@ -87,6 +87,8 @@ class Game bool mDisconnected; WindowMenu *mWindowMenu; + MinimapWindow *mMinimapWindow; + MiniStatusWindow *mMiniStatusWindow; Map *mCurrentMap; std::string mMapName; |