diff options
author | Paul Gilbert | 2016-03-17 19:58:59 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-03-17 19:58:59 -0400 |
commit | a8d94d448ea977bdd5b1171e177de6dd714792a2 (patch) | |
tree | a9756367b569bcbba8f929c036ef943b48e483e0 /engines/titanic/moves | |
parent | e80a15170640a495b5c7861abeea71d0325684cd (diff) | |
download | scummvm-rg350-a8d94d448ea977bdd5b1171e177de6dd714792a2.tar.gz scummvm-rg350-a8d94d448ea977bdd5b1171e177de6dd714792a2.tar.bz2 scummvm-rg350-a8d94d448ea977bdd5b1171e177de6dd714792a2.zip |
TITANIC: Fixes to make message handling const, adding CEnterRoomMsg handlers
Diffstat (limited to 'engines/titanic/moves')
-rw-r--r-- | engines/titanic/moves/enter_bridge.cpp | 5 | ||||
-rw-r--r-- | engines/titanic/moves/enter_bridge.h | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/engines/titanic/moves/enter_bridge.cpp b/engines/titanic/moves/enter_bridge.cpp index a1e0b7e489..6f8ba4cd41 100644 --- a/engines/titanic/moves/enter_bridge.cpp +++ b/engines/titanic/moves/enter_bridge.cpp @@ -36,4 +36,9 @@ void CEnterBridge::load(SimpleFile *file) { CGameObject::load(file); } +bool CEnterBridge::handleEvent(const CEnterRoomMsg &msg) { + warning("CEnterBridge::handlEvent"); + return true; +} + } // End of namespace Titanic diff --git a/engines/titanic/moves/enter_bridge.h b/engines/titanic/moves/enter_bridge.h index 6a6e7161dd..3685bed8a1 100644 --- a/engines/titanic/moves/enter_bridge.h +++ b/engines/titanic/moves/enter_bridge.h @@ -24,12 +24,15 @@ #define TITANIC_ENTER_BRIDGE_H #include "titanic/core/game_object.h" +#include "titanic/messages/messages.h" namespace Titanic { -class CEnterBridge : public CGameObject { -public: +class CEnterBridge : public CGameObject, CEnterRoomMsgTarget { +private: int _value; +protected: + virtual bool handleEvent(const CEnterRoomMsg &msg); public: CLASSDEF CEnterBridge() : CGameObject(), _value(1) {} |