From f2ee67558acbe3c418a7558587b56158d593d88d Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 30 Dec 2011 13:11:35 -0700 Subject: 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... --- src/functionexit.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/functionexit.cpp (limited to 'src/functionexit.cpp') 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 @@ +#include "functionexit.h" + +#include "gamestate.h" + +FunctionExit::FunctionExit() +{ +} + +FunctionExit::~FunctionExit() +{ +} + +void FunctionExit::call( class GameState &gState ) +{ + gState.exit(); +} + -- cgit v1.2.3