aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/titanic.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-03-01 20:41:07 -0500
committerPaul Gilbert2016-03-01 20:41:07 -0500
commit9ce8e1130cc32c49e31a2160b2f4034f05430b4b (patch)
treeed1c25ade35c6e5449b80918c9377bf55b113199 /engines/titanic/titanic.cpp
parent32d84ed33d88e42bc521b3736b35bacdfa5c13e7 (diff)
downloadscummvm-rg350-9ce8e1130cc32c49e31a2160b2f4034f05430b4b.tar.gz
scummvm-rg350-9ce8e1130cc32c49e31a2160b2f4034f05430b4b.tar.bz2
scummvm-rg350-9ce8e1130cc32c49e31a2160b2f4034f05430b4b.zip
TITANIC: Lots more miscellaneous classes
Diffstat (limited to 'engines/titanic/titanic.cpp')
-rw-r--r--engines/titanic/titanic.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/engines/titanic/titanic.cpp b/engines/titanic/titanic.cpp
index 03dbacd6da..d8d4c77429 100644
--- a/engines/titanic/titanic.cpp
+++ b/engines/titanic/titanic.cpp
@@ -28,12 +28,13 @@
#include "graphics/scaler.h"
#include "graphics/thumbnail.h"
#include "titanic/titanic.h"
+#include "titanic/carry/hose.h"
#include "titanic/core/saveable_object.h"
-#include "titanic/game/enter_exit_first_class_state.h"
+#include "titanic/game/get_lift_eye2.h"
#include "titanic/game/parrot/parrot_lobby_object.h"
#include "titanic/game/sgt/sgt_navigation.h"
#include "titanic/game/sgt/sgt_state_room.h"
-#include "titanic/carry/hose.h"
+#include "titanic/moves/enter_exit_first_class_state.h"
namespace Titanic {
@@ -57,9 +58,10 @@ void TitanicEngine::initialize() {
DebugMan.addDebugChannel(kDebugSound, "sound", "Sound and Music handling");
CSaveableObject::initClassList();
- CParrotLobbyObject::init();
CEnterExitFirstClassState::init();
+ CGetLiftEye2::init();
CHose::init();
+ CParrotLobbyObject::init();
CSGTNavigation::init();
CSGTStateRoom::init();
@@ -70,6 +72,7 @@ void TitanicEngine::initialize() {
void TitanicEngine::deinitialize() {
CEnterExitFirstClassState::deinit();
+ CGetLiftEye2::deinit();
CHose::deinit();
CSGTNavigation::deinit();
CSGTStateRoom::deinit();