summaryrefslogtreecommitdiff
path: root/src/functionexists.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/functionexists.cpp')
-rw-r--r--src/functionexists.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/functionexists.cpp b/src/functionexists.cpp
deleted file mode 100644
index 71e03f6..0000000
--- a/src/functionexists.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
1#include "functionexists.h"
2
3#include "gamestate.h"
4
5FunctionExists::FunctionExists()
6{
7}
8
9FunctionExists::~FunctionExists()
10{
11}
12
13void 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