diff options
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,9 +3,11 @@ | |||
3 | 3 | ||
4 | #include <bu/string.h> | 4 | #include <bu/string.h> |
5 | #include <bu/hash.h> | 5 | #include <bu/hash.h> |
6 | |||
6 | #include "function.h" | 7 | #include "function.h" |
7 | #include "situation.h" | 8 | #include "situation.h" |
8 | #include "scope.h" | 9 | #include "scope.h" |
10 | #include "commandset.h" | ||
9 | 11 | ||
10 | class Game | 12 | class Game |
11 | { | 13 | { |
@@ -20,7 +22,7 @@ private: | |||
20 | VariableHash hGlobalParam; | 22 | VariableHash hGlobalParam; |
21 | FunctionHash hFunction; | 23 | FunctionHash hFunction; |
22 | SituationHash hSituation; | 24 | SituationHash hSituation; |
23 | Bu::String sCurSituation; | 25 | CommandSet csGlobal; |
24 | }; | 26 | }; |
25 | 27 | ||
26 | #endif | 28 | #endif |