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 b9c7e08..910cec2 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -3,12 +3,14 @@
3#include "functiondisplay.h" 3#include "functiondisplay.h"
4#include "functionexists.h" 4#include "functionexists.h"
5#include "functiondelete.h" 5#include "functiondelete.h"
6#include "functionexit.h"
6 7
7Game::Game() 8Game::Game()
8{ 9{
9 addFunction( new FunctionDisplay() ); 10 addFunction( new FunctionDisplay() );
10 addFunction( new FunctionExists() ); 11 addFunction( new FunctionExists() );
11 addFunction( new FunctionDelete() ); 12 addFunction( new FunctionDelete() );
13 addFunction( new FunctionExit() );
12} 14}
13 15
14Game::~Game() 16Game::~Game()