diff options
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -9,6 +9,7 @@ | |||
9 | 9 | ||
10 | class Game | 10 | class Game |
11 | { | 11 | { |
12 | friend class GameBuilder; | ||
12 | public: | 13 | public: |
13 | Game(); | 14 | Game(); |
14 | virtual ~Game(); | 15 | virtual ~Game(); |
@@ -16,7 +17,7 @@ public: | |||
16 | private: | 17 | private: |
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; |