aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game/sgt/sgt_state_room.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-08-18 23:52:58 -0400
committerPaul Gilbert2016-08-18 23:52:58 -0400
commitcd8415cfd6e51ef8ab2d4e51ddb4a120253e3b96 (patch)
treee0e345a3a59cb58d3024f0eb6feb6703c7924a38 /engines/titanic/game/sgt/sgt_state_room.h
parentdc91d30b76ded7ed7a648a0b0b43d8fe99c00cf6 (diff)
downloadscummvm-rg350-cd8415cfd6e51ef8ab2d4e51ddb4a120253e3b96.tar.gz
scummvm-rg350-cd8415cfd6e51ef8ab2d4e51ddb4a120253e3b96.tar.bz2
scummvm-rg350-cd8415cfd6e51ef8ab2d4e51ddb4a120253e3b96.zip
TITANIC: Implementing game classes
Diffstat (limited to 'engines/titanic/game/sgt/sgt_state_room.h')
-rw-r--r--engines/titanic/game/sgt/sgt_state_room.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/engines/titanic/game/sgt/sgt_state_room.h b/engines/titanic/game/sgt/sgt_state_room.h
index d9ffdb8e9e..3975f7b59b 100644
--- a/engines/titanic/game/sgt/sgt_state_room.h
+++ b/engines/titanic/game/sgt/sgt_state_room.h
@@ -47,15 +47,18 @@ struct CSGTStateRoomStatics {
class CSGTStateRoom : public CBackground {
DECLARE_MESSAGE_MAP;
+ bool ActMsg(CActMsg *msg);
+ bool VisibleMsg(CVisibleMsg *msg);
bool EnterRoomMsg(CEnterRoomMsg *msg);
+ bool LeaveRoomMsg(CLeaveRoomMsg *msg);
protected:
static CSGTStateRoomStatics *_statics;
protected:
- int _fieldE0;
+ bool _fieldE0;
int _fieldE4;
int _fieldE8;
- int _fieldEC;
- int _fieldF0;
+ bool _fieldEC;
+ bool _fieldF0;
public:
CLASSDEF;
CSGTStateRoom();