diff options
Diffstat (limited to 'src/functionexists.cpp')
-rw-r--r-- | src/functionexists.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/functionexists.cpp b/src/functionexists.cpp new file mode 100644 index 0000000..71e03f6 --- /dev/null +++ b/src/functionexists.cpp | |||
@@ -0,0 +1,19 @@ | |||
1 | #include "functionexists.h" | ||
2 | |||
3 | #include "gamestate.h" | ||
4 | |||
5 | FunctionExists::FunctionExists() | ||
6 | { | ||
7 | } | ||
8 | |||
9 | FunctionExists::~FunctionExists() | ||
10 | { | ||
11 | } | ||
12 | |||
13 | void FunctionExists::call( class GameState &gState ) | ||
14 | { | ||
15 | Variable v = gState.pop(); | ||
16 | VariableRef r = v.getVariableRef(); | ||
17 | gState.push( Variable( gState.hasVariable( r.sName, r.sid ) ) ); | ||
18 | } | ||
19 | |||