summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
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()