diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 10:41:23 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 10:41:23 -0700 |
commit | 79dce6268850fb1b0d76c15d5399d66bcd286e5f (patch) | |
tree | 1ab0e20ce928b93262da820c2aa8a91e86a801f9 /src/game.h | |
parent | bae6192c54533e8da95d8ae1ed4d4eccee28c39a (diff) | |
download | stage-79dce6268850fb1b0d76c15d5399d66bcd286e5f.tar.gz stage-79dce6268850fb1b0d76c15d5399d66bcd286e5f.tar.bz2 stage-79dce6268850fb1b0d76c15d5399d66bcd286e5f.tar.xz stage-79dce6268850fb1b0d76c15d5399d66bcd286e5f.zip |
About to add the processing core.
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 |