summaryrefslogtreecommitdiff
path: root/src/gamestate.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-30 09:59:47 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-30 09:59:47 -0700
commit9e6dc529833d17374a73bae1f30c7970f936f7cc (patch)
treedf46666b06065d6aefaf64e5722b57ff07f0a9e8 /src/gamestate.h
parent00fb7e6f65faf72a85c72f3775e49345aeb7442f (diff)
downloadstage-9e6dc529833d17374a73bae1f30c7970f936f7cc.tar.gz
stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.tar.bz2
stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.tar.xz
stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.zip
Functions exists/delete work now.
Diffstat (limited to 'src/gamestate.h')
-rw-r--r--src/gamestate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gamestate.h b/src/gamestate.h
index 6000419..61e18e8 100644
--- a/src/gamestate.h
+++ b/src/gamestate.h
@@ -26,6 +26,8 @@ public:
26 26
27 void callFunction( const Bu::String &sName ); 27 void callFunction( const Bu::String &sName );
28 28
29 bool hasVariable( const Bu::String &sName, ScopeId id );
30 void delVariable( const Bu::String &sName, ScopeId id );
29 Variable getVariable( const Bu::String &sName, ScopeId id=sidLocal ); 31 Variable getVariable( const Bu::String &sName, ScopeId id=sidLocal );
30 void setVariable( const Bu::String &sName, const Variable &v, ScopeId id=sidLocal ); 32 void setVariable( const Bu::String &sName, const Variable &v, ScopeId id=sidLocal );
31 33