summaryrefslogtreecommitdiff
path: root/src/gamestate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gamestate.h')
-rw-r--r--src/gamestate.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gamestate.h b/src/gamestate.h
index 8ff92f5..4209ebf 100644
--- a/src/gamestate.h
+++ b/src/gamestate.h
@@ -39,6 +39,7 @@ public:
39 39
40 void callFunction( const Bu::String &sName ); 40 void callFunction( const Bu::String &sName );
41 void execCommand( const Bu::String &sCmd ); 41 void execCommand( const Bu::String &sCmd );
42 void execOption( int idx );
42 43
43 bool hasVariable( const Bu::String &sName, ScopeId id ); 44 bool hasVariable( const Bu::String &sName, ScopeId id );
44 void delVariable( const Bu::String &sName, ScopeId id ); 45 void delVariable( const Bu::String &sName, ScopeId id );
@@ -52,6 +53,8 @@ public:
52 bool isRunning() const { return bRunning; } 53 bool isRunning() const { return bRunning; }
53 Bu::String getPrompt() const { return sPrompt; } 54 Bu::String getPrompt() const { return sPrompt; }
54 55
56 class Situation *getCurSituation();
57
55private: 58private:
56 void parse( const AstBranch::NodeList &lCode ); 59 void parse( const AstBranch::NodeList &lCode );
57 60