summaryrefslogtreecommitdiff
path: root/src/functionexit.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-30 13:11:35 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-30 13:11:35 -0700
commitf2ee67558acbe3c418a7558587b56158d593d88d (patch)
treed0b306fc26679fee672df740acdbdc0ede3c50dd /src/functionexit.cpp
parente112d781ea5ffc4186e7d70dba595b5a233335a8 (diff)
downloadstage-f2ee67558acbe3c418a7558587b56158d593d88d.tar.gz
stage-f2ee67558acbe3c418a7558587b56158d593d88d.tar.bz2
stage-f2ee67558acbe3c418a7558587b56158d593d88d.tar.xz
stage-f2ee67558acbe3c418a7558587b56158d593d88d.zip
return, exit, lists added. You can't index them.
They're linked lists right now, maybe that's not really what I want long-term, but it'll work for now...
Diffstat (limited to 'src/functionexit.cpp')
-rw-r--r--src/functionexit.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/functionexit.cpp b/src/functionexit.cpp
new file mode 100644
index 0000000..be64f43
--- /dev/null
+++ b/src/functionexit.cpp
@@ -0,0 +1,17 @@
1#include "functionexit.h"
2
3#include "gamestate.h"
4
5FunctionExit::FunctionExit()
6{
7}
8
9FunctionExit::~FunctionExit()
10{
11}
12
13void FunctionExit::call( class GameState &gState )
14{
15 gState.exit();
16}
17