aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/titanic.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-02-29 22:56:16 -0500
committerPaul Gilbert2016-02-29 22:56:16 -0500
commit5dd3798ebf8177d9c21d79d4e36b173568c09a70 (patch)
tree54c691106c1c6a9d94d1c36164083162765e9eb4 /engines/titanic/titanic.cpp
parenta89dd72f2007b00304d0cc01ac4b6dc08ed6625e (diff)
downloadscummvm-rg350-5dd3798ebf8177d9c21d79d4e36b173568c09a70.tar.gz
scummvm-rg350-5dd3798ebf8177d9c21d79d4e36b173568c09a70.tar.bz2
scummvm-rg350-5dd3798ebf8177d9c21d79d4e36b173568c09a70.zip
TITANIC: Added a bunch of classes, loading method fixes
Diffstat (limited to 'engines/titanic/titanic.cpp')
-rw-r--r--engines/titanic/titanic.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/titanic/titanic.cpp b/engines/titanic/titanic.cpp
index b3aae7bf1b..62a0ae25c1 100644
--- a/engines/titanic/titanic.cpp
+++ b/engines/titanic/titanic.cpp
@@ -29,8 +29,10 @@
#include "graphics/thumbnail.h"
#include "titanic/titanic.h"
#include "titanic/core/saveable_object.h"
-#include "titanic/game/parrot/parrot_lobby_object.h"
#include "titanic/game/enter_exit_first_class_state.h"
+#include "titanic/game/parrot/parrot_lobby_object.h"
+#include "titanic/game/sgt/sgt_state_room.h"
+#include "titanic/carry/hose.h"
namespace Titanic {
@@ -56,6 +58,8 @@ void TitanicEngine::initialize() {
CSaveableObject::initClassList();
CParrotLobbyObject::init();
CEnterExitFirstClassState::init();
+ CHose::init();
+ CSGTStateRoom::init();
_screenManager = new OSScreenManager(this);
_window = new CMainGameWindow(this);
@@ -64,6 +68,8 @@ void TitanicEngine::initialize() {
void TitanicEngine::deinitialize() {
CEnterExitFirstClassState::deinit();
+ CHose::deinit();
+ CSGTStateRoom::deinit();
}
Common::Error TitanicEngine::run() {