aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/titanic.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-02-28 10:57:45 -0500
committerPaul Gilbert2016-02-28 10:57:45 -0500
commitdecec97c4b7611c56135cf222544afa9f043c894 (patch)
treef0e00a3fd0e8d13a49628917a136d3e784d44a26 /engines/titanic/titanic.cpp
parent6cb2a5e81f03ff984a2bc8b214c02f0a3c255952 (diff)
downloadscummvm-rg350-decec97c4b7611c56135cf222544afa9f043c894.tar.gz
scummvm-rg350-decec97c4b7611c56135cf222544afa9f043c894.tar.bz2
scummvm-rg350-decec97c4b7611c56135cf222544afa9f043c894.zip
TITANIC: Implement various parrot classes
Diffstat (limited to 'engines/titanic/titanic.cpp')
-rw-r--r--engines/titanic/titanic.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/titanic/titanic.cpp b/engines/titanic/titanic.cpp
index 47b7c1336a..9deb5e6e7a 100644
--- a/engines/titanic/titanic.cpp
+++ b/engines/titanic/titanic.cpp
@@ -29,6 +29,7 @@
#include "graphics/thumbnail.h"
#include "titanic/titanic.h"
#include "titanic/core/saveable_object.h"
+#include "titanic/game/parrot/parrot_lobby_object.h"
namespace Titanic {
@@ -52,6 +53,8 @@ void TitanicEngine::initialize() {
DebugMan.addDebugChannel(kDebugSound, "sound", "Sound and Music handling");
CSaveableObject::initClassList();
+ CParrotLobbyObject::init();
+
_screenManager = new OSScreenManager(this);
_window = new CMainGameWindow(this);
_window->applicationStarting();