diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-02-05 16:37:36 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-02-05 16:37:36 (GMT) |
| commit | 7ae5eaab79a41f31b633ca6f1bfb0dbae2fccb90 (patch) | |
| tree | b76fc14cca5e19c5482209f34131973ad1f80e6a /src/game/GameController.h | |
| parent | 8024caec55ff1b93eefe50663d4ddf63934f8d63 (diff) | |
| download | powder-7ae5eaab79a41f31b633ca6f1bfb0dbae2fccb90.zip powder-7ae5eaab79a41f31b633ca6f1bfb0dbae2fccb90.tar.gz | |
Started intrepreter for tpt script and various things for console
Diffstat (limited to 'src/game/GameController.h')
| -rw-r--r-- | src/game/GameController.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/GameController.h b/src/game/GameController.h index 0e70371..ba3ae70 100644 --- a/src/game/GameController.h +++ b/src/game/GameController.h @@ -11,12 +11,15 @@ #include "login/LoginController.h" #include "ssave/SSaveController.h" #include "console/ConsoleController.h" +#include "cat/TPTScriptInterface.h" #include "Menu.h" using namespace std; class GameModel; class GameView; +class CommandInterface; +class ConsoleController; class GameController { private: @@ -28,6 +31,7 @@ private: LoginController * loginWindow; SSaveController * ssave; ConsoleController * console; + CommandInterface * commandInterface; public: class LoginCallback; class SearchCallback; |
