diff options
Diffstat (limited to 'src/functiondelete.cpp')
| -rw-r--r-- | src/functiondelete.cpp | 20 |
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 | |||
| 5 | FunctionDelete::FunctionDelete() | ||
| 6 | { | ||
| 7 | } | ||
| 8 | |||
| 9 | FunctionDelete::~FunctionDelete() | ||
| 10 | { | ||
| 11 | } | ||
| 12 | |||
| 13 | void 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 | |||
