summaryrefslogtreecommitdiff
path: root/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game.h b/src/game.h
index 3287ff43..4986d591 100644
--- a/src/game.h
+++ b/src/game.h
@@ -24,9 +24,9 @@
#include <string>
-#include "gui/windowmenu.h"
-
class Map;
+class WindowMenu;
+class MiniStatusWindow;
/**
* The main class responsible for running the game. The game starts after you
@@ -77,8 +77,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 +86,7 @@ class Game
bool mDisconnected;
WindowMenu *mWindowMenu;
+ MiniStatusWindow *mMiniStatusWindow;
Map *mCurrentMap;
std::string mMapName;