diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-30 13:11:35 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-30 13:11:35 -0700 |
commit | f2ee67558acbe3c418a7558587b56158d593d88d (patch) | |
tree | d0b306fc26679fee672df740acdbdc0ede3c50dd /src/functionexit.cpp | |
parent | e112d781ea5ffc4186e7d70dba595b5a233335a8 (diff) | |
download | stage-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.cpp | 17 |
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 | |||
5 | FunctionExit::FunctionExit() | ||
6 | { | ||
7 | } | ||
8 | |||
9 | FunctionExit::~FunctionExit() | ||
10 | { | ||
11 | } | ||
12 | |||
13 | void FunctionExit::call( class GameState &gState ) | ||
14 | { | ||
15 | gState.exit(); | ||
16 | } | ||
17 | |||