summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-01-18 23:58:30 -0700
committerMike Buland <eichlan@xagasoft.com>2012-01-18 23:58:30 -0700
commit3232d0069421a1585e7e42f503c1ed7b1910891c (patch)
tree0d2c5ed5e24a9ffeb3c1b3c08528971a8a3d587e /src/game.cpp
parent0bdd1441fc95f70f2f86c89c20eb866a9ca2787b (diff)
downloadstage-3232d0069421a1585e7e42f503c1ed7b1910891c.tar.gz
stage-3232d0069421a1585e7e42f503c1ed7b1910891c.tar.bz2
stage-3232d0069421a1585e7e42f503c1ed7b1910891c.tar.xz
stage-3232d0069421a1585e7e42f503c1ed7b1910891c.zip
Added functions join, string, and keys.
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 4971c4b..37989bd 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -8,6 +8,9 @@
8#include "functioninteger.h" 8#include "functioninteger.h"
9#include "functionfloat.h" 9#include "functionfloat.h"
10#include "functiondebugstring.h" 10#include "functiondebugstring.h"
11#include "functionstring.h"
12#include "functionjoin.h"
13#include "functionkeys.h"
11 14
12Game::Game() 15Game::Game()
13{ 16{
@@ -20,6 +23,9 @@ Game::Game()
20 addFunction( new FunctionInteger() ); 23 addFunction( new FunctionInteger() );
21 addFunction( new FunctionFloat() ); 24 addFunction( new FunctionFloat() );
22 addFunction( new FunctionDebugString() ); 25 addFunction( new FunctionDebugString() );
26 addFunction( new FunctionString() );
27 addFunction( new FunctionJoin() );
28 addFunction( new FunctionKeys() );
23} 29}
24 30
25Game::~Game() 31Game::~Game()