summaryrefslogtreecommitdiff
path: root/src/game/GameController.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/GameController.h')
-rw-r--r--src/game/GameController.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/GameController.h b/src/game/GameController.h
index df5f9fc..84af343 100644
--- a/src/game/GameController.h
+++ b/src/game/GameController.h
@@ -10,6 +10,7 @@
#include "render/RenderController.h"
#include "login/LoginController.h"
#include "ssave/SSaveController.h"
+#include "console/ConsoleController.h"
#include "Menu.h"
using namespace std;
@@ -26,6 +27,7 @@ private:
RenderController * renderOptions;
LoginController * loginWindow;
SSaveController * ssave;
+ ConsoleController * console;
public:
class LoginCallback;
class SearchCallback;
@@ -57,6 +59,7 @@ public:
void ReloadSim();
void Vote(int direction);
void ChangeBrush();
+ void ShowConsole();
ui::Point PointTranslate(ui::Point point);
};