diff options
| author | Eugene Sandulenko | 2013-07-22 18:46:03 +0300 | 
|---|---|---|
| committer | Eugene Sandulenko | 2013-09-06 14:51:04 +0300 | 
| commit | 7aa2377bf7986b77e145adb1350f99013ab35380 (patch) | |
| tree | 5e19984f8a32ab96621715ea93fa307533ba496a /engines/fullpipe/gameloader.cpp | |
| parent | 82b596a31e42bf21cec2a31a3a68c07c1936355d (diff) | |
| download | scummvm-rg350-7aa2377bf7986b77e145adb1350f99013ab35380.tar.gz scummvm-rg350-7aa2377bf7986b77e145adb1350f99013ab35380.tar.bz2 scummvm-rg350-7aa2377bf7986b77e145adb1350f99013ab35380.zip | |
FULLPIPE: Initial stubs for input system
Diffstat (limited to 'engines/fullpipe/gameloader.cpp')
| -rw-r--r-- | engines/fullpipe/gameloader.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/engines/fullpipe/gameloader.cpp b/engines/fullpipe/gameloader.cpp index abb709825d..c7b547d845 100644 --- a/engines/fullpipe/gameloader.cpp +++ b/engines/fullpipe/gameloader.cpp @@ -24,6 +24,7 @@  #include "fullpipe/gameloader.h"  #include "fullpipe/scene.h" +#include "fullpipe/input.h"  namespace Fullpipe { @@ -45,6 +46,7 @@ CInteractionController *getGameLoaderInteractionController() {  CGameLoader::CGameLoader() {  	_interactionController = new CInteractionController(); +	_inputController = new CInputController();  	_gameProject = 0;  	//_gameName = "untitled"; @@ -68,11 +70,15 @@ CGameLoader::CGameLoader() {  	//dword_478480 = 0;  	//g_objectId2 = 0;  	//g_id = 0; + +	warning("STUB: CGameLoader::CGameLoader()");  }  CGameLoader::~CGameLoader() {  	free(_gameName);  	delete _gameProject; +	delete _interactionController; +	delete _inputController;  }  bool CGameLoader::load(MfcArchive &file) { | 
