summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-01-03 00:08:48 -0700
committerMike Buland <eichlan@xagasoft.com>2012-01-03 00:08:48 -0700
commit8b9a15a755ebc6681ff6be808615e375cb567080 (patch)
treec836f3a7a338e6bcc1fe88fe1207819005b92a83 /src/game.cpp
parent340de5ebabbc60727b2aeb85b9faa72a75f1628b (diff)
downloadstage-8b9a15a755ebc6681ff6be808615e375cb567080.tar.gz
stage-8b9a15a755ebc6681ff6be808615e375cb567080.tar.bz2
stage-8b9a15a755ebc6681ff6be808615e375cb567080.tar.xz
stage-8b9a15a755ebc6681ff6be808615e375cb567080.zip
New functions, fixes, and a working bloodfields.
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()