summaryrefslogtreecommitdiff
path: root/src/gamestate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gamestate.h')
-rw-r--r--src/gamestate.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gamestate.h b/src/gamestate.h
index e139dfe..1d6d491 100644
--- a/src/gamestate.h
+++ b/src/gamestate.h
@@ -9,12 +9,19 @@
9class Game; 9class Game;
10class Interface; 10class Interface;
11 11
12namespace Gats
13{
14 class Object;
15}
16
12class GameState 17class GameState
13{ 18{
14public: 19public:
15 GameState( Game *pGame, Interface *pIface ); 20 GameState( Game *pGame, Interface *pIface );
16 virtual ~GameState(); 21 virtual ~GameState();
17 22
23 Gats::Object *toGats() const;
24
18 Interface *getInterface() { return pIface; } 25 Interface *getInterface() { return pIface; }
19 26
20 void parse( class AstBranch *pAst ); 27 void parse( class AstBranch *pAst );