summaryrefslogtreecommitdiff
path: root/src/functiondelete.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/functiondelete.cpp')
-rw-r--r--src/functiondelete.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/functiondelete.cpp b/src/functiondelete.cpp
deleted file mode 100644
index 070ffd4..0000000
--- a/src/functiondelete.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
1#include "functiondelete.h"
2
3#include "gamestate.h"
4
5FunctionDelete::FunctionDelete()
6{
7}
8
9FunctionDelete::~FunctionDelete()
10{
11}
12
13void FunctionDelete::call( class GameState &gState )
14{
15 Variable v = gState.pop();
16 VariableRef r = v.getVariableRef();
17 gState.delVariable( r.sName, r.sid );
18 gState.push( Variable( Variable::tNull ) );
19}
20