aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/core
diff options
context:
space:
mode:
authorPaul Gilbert2016-02-26 07:55:34 -0500
committerPaul Gilbert2016-02-26 07:55:34 -0500
commit16bcc6beba1b28c822c194aa35368e69b48f43cb (patch)
treec78c226552549b44df91b6c5b438d18acaea5e96 /engines/titanic/core
parentb08d0dd1304250143a5015db6dc1206d708bceca (diff)
downloadscummvm-rg350-16bcc6beba1b28c822c194aa35368e69b48f43cb.tar.gz
scummvm-rg350-16bcc6beba1b28c822c194aa35368e69b48f43cb.tar.bz2
scummvm-rg350-16bcc6beba1b28c822c194aa35368e69b48f43cb.zip
TITANIC: Implemented CCallBot
Diffstat (limited to 'engines/titanic/core')
-rw-r--r--engines/titanic/core/saveable_object.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/titanic/core/saveable_object.cpp b/engines/titanic/core/saveable_object.cpp
index 6b6b439a72..c154dde388 100644
--- a/engines/titanic/core/saveable_object.cpp
+++ b/engines/titanic/core/saveable_object.cpp
@@ -59,6 +59,7 @@
#include "titanic/npcs/barbot.h"
#include "titanic/npcs/bellbot.h"
+#include "titanic/npcs/callbot.h"
#include "titanic/npcs/deskbot.h"
#include "titanic/npcs/doorbot.h"
#include "titanic/npcs/liftbot.h"
@@ -115,6 +116,7 @@ DEFFN(CTripDownCanal);
DEFFN(CBarbot);
DEFFN(CBellBot);
+DEFFN(CCallBot);
DEFFN(CDeskbot);
DEFFN(CDoorbot);
DEFFN(CLiftBot);
@@ -165,6 +167,7 @@ void CSaveableObject::initClassList() {
ADDFN(CBarbot);
ADDFN(CBellBot);
+ ADDFN(CCallBot);
ADDFN(CDeskbot);
ADDFN(CDoorbot);
ADDFN(CMaitreD);