summaryrefslogtreecommitdiff
path: root/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game.h b/src/game.h
index 1daa148..81247ca 100644
--- a/src/game.h
+++ b/src/game.h
@@ -9,6 +9,7 @@
9 9
10class Game 10class Game
11{ 11{
12friend class GameBuilder;
12public: 13public:
13 Game(); 14 Game();
14 virtual ~Game(); 15 virtual ~Game();
@@ -16,7 +17,7 @@ public:
16private: 17private:
17 typedef Bu::Hash<Bu::String, Function *> FunctionHash; 18 typedef Bu::Hash<Bu::String, Function *> FunctionHash;
18 typedef Bu::Hash<Bu::String, Situation *> SituationHash; 19 typedef Bu::Hash<Bu::String, Situation *> SituationHash;
19 typedef Bu::Hash<Bu::String, Scope *> ScopeHash; 20 VariableHash hGlobalParam;
20 FunctionHash hFunction; 21 FunctionHash hFunction;
21 SituationHash hSituation; 22 SituationHash hSituation;
22 Bu::String sCurSituation; 23 Bu::String sCurSituation;