summaryrefslogtreecommitdiff
path: root/src/gamestate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gamestate.cpp')
-rw-r--r--src/gamestate.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gamestate.cpp b/src/gamestate.cpp
index 7777b1f..0b721d4 100644
--- a/src/gamestate.cpp
+++ b/src/gamestate.cpp
@@ -8,8 +8,9 @@
8#include <bu/sio.h> 8#include <bu/sio.h>
9using namespace Bu; 9using namespace Bu;
10 10
11GameState::GameState( Game *pGame ) : 11GameState::GameState( Game *pGame, Interface *pIface ) :
12 pGame( pGame ), 12 pGame( pGame ),
13 pIface( pIface ),
13 bRunning( true ), 14 bRunning( true ),
14 bReturnOnly( false ) 15 bReturnOnly( false )
15{ 16{