summaryrefslogtreecommitdiff
path: root/src/game.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-29 10:41:23 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-29 10:41:23 -0700
commit79dce6268850fb1b0d76c15d5399d66bcd286e5f (patch)
tree1ab0e20ce928b93262da820c2aa8a91e86a801f9 /src/game.h
parentbae6192c54533e8da95d8ae1ed4d4eccee28c39a (diff)
downloadstage-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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game.h b/src/game.h
index 81247ca..dd614cf 100644
--- a/src/game.h
+++ b/src/game.h
@@ -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
10class Game 12class 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