summaryrefslogtreecommitdiff
path: root/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/game.h b/src/game.h
index 3287ff43..f93d32aa 100644
--- a/src/game.h
+++ b/src/game.h
@@ -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;