summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 3a432d9..4971c4b 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -7,6 +7,7 @@
7#include "functionrandom.h" 7#include "functionrandom.h"
8#include "functioninteger.h" 8#include "functioninteger.h"
9#include "functionfloat.h" 9#include "functionfloat.h"
10#include "functiondebugstring.h"
10 11
11Game::Game() 12Game::Game()
12{ 13{
@@ -18,6 +19,7 @@ Game::Game()
18 addFunction( new FunctionRandom() ); 19 addFunction( new FunctionRandom() );
19 addFunction( new FunctionInteger() ); 20 addFunction( new FunctionInteger() );
20 addFunction( new FunctionFloat() ); 21 addFunction( new FunctionFloat() );
22 addFunction( new FunctionDebugString() );
21} 23}
22 24
23Game::~Game() 25Game::~Game()