diff options
author | Paul Gilbert | 2016-04-06 23:28:42 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-04-06 23:28:42 -0400 |
commit | 51dc36a9a52f95815b4b1109b080d070247bf247 (patch) | |
tree | d53d8c288a593fd897536f943debbd2d7b46275e /engines/titanic/game/pet | |
parent | 51df4d98d3a066e092f34cf7968c436a3e430df2 (diff) | |
download | scummvm-rg350-51dc36a9a52f95815b4b1109b080d070247bf247.tar.gz scummvm-rg350-51dc36a9a52f95815b4b1109b080d070247bf247.tar.bz2 scummvm-rg350-51dc36a9a52f95815b4b1109b080d070247bf247.zip |
TITANIC: Furhter in-progress message handling conversion
Diffstat (limited to 'engines/titanic/game/pet')
-rw-r--r-- | engines/titanic/game/pet/pet_monitor.h | 3 | ||||
-rw-r--r-- | engines/titanic/game/pet/pet_position.h | 3 | ||||
-rw-r--r-- | engines/titanic/game/pet/pet_transport.h | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/engines/titanic/game/pet/pet_monitor.h b/engines/titanic/game/pet/pet_monitor.h index 5cf14f38cb..56116d8313 100644 --- a/engines/titanic/game/pet/pet_monitor.h +++ b/engines/titanic/game/pet/pet_monitor.h @@ -28,8 +28,7 @@ namespace Titanic { -class CPETMonitor : public CGameObject, - public CEnterRoomMsgTarget { +class CPETMonitor : public CGameObject { protected: virtual bool handleMessage(CEnterRoomMsg &msg); public: diff --git a/engines/titanic/game/pet/pet_position.h b/engines/titanic/game/pet/pet_position.h index 820df41c50..589f2b60b1 100644 --- a/engines/titanic/game/pet/pet_position.h +++ b/engines/titanic/game/pet/pet_position.h @@ -28,8 +28,7 @@ namespace Titanic { -class CPETPosition : public CGameObject, - public CEnterRoomMsgTarget { +class CPETPosition : public CGameObject { protected: virtual bool handleMessage(CEnterRoomMsg &msg); public: diff --git a/engines/titanic/game/pet/pet_transport.h b/engines/titanic/game/pet/pet_transport.h index 8dd3f3aac5..2c94bb6fe7 100644 --- a/engines/titanic/game/pet/pet_transport.h +++ b/engines/titanic/game/pet/pet_transport.h @@ -28,8 +28,7 @@ namespace Titanic { -class CPETTransport : public CGameObject, - public CEnterRoomMsgTarget { +class CPETTransport : public CGameObject { protected: virtual bool handleMessage(CEnterRoomMsg &msg); public: |