summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game.cpp b/src/game.cpp
index c19b039..3a432d9 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -5,6 +5,8 @@
5#include "functiondelete.h" 5#include "functiondelete.h"
6#include "functionexit.h" 6#include "functionexit.h"
7#include "functionrandom.h" 7#include "functionrandom.h"
8#include "functioninteger.h"
9#include "functionfloat.h"
8 10
9Game::Game() 11Game::Game()
10{ 12{
@@ -14,6 +16,8 @@ Game::Game()
14 addFunction( new FunctionDelete() ); 16 addFunction( new FunctionDelete() );
15 addFunction( new FunctionExit() ); 17 addFunction( new FunctionExit() );
16 addFunction( new FunctionRandom() ); 18 addFunction( new FunctionRandom() );
19 addFunction( new FunctionInteger() );
20 addFunction( new FunctionFloat() );
17} 21}
18 22
19Game::~Game() 23Game::~Game()