aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game/brain_slot.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-08-15 23:51:31 -0400
committerPaul Gilbert2016-08-15 23:51:31 -0400
commit87d9b6682ac1093995f43444c3d8dd915e968dc2 (patch)
tree1b82fc532f10bc13824cad1550625b8d9b08cfc3 /engines/titanic/game/brain_slot.h
parenta4885b1d6f783f20716c2d86316946362215bdaa (diff)
downloadscummvm-rg350-87d9b6682ac1093995f43444c3d8dd915e968dc2.tar.gz
scummvm-rg350-87d9b6682ac1093995f43444c3d8dd915e968dc2.tar.bz2
scummvm-rg350-87d9b6682ac1093995f43444c3d8dd915e968dc2.zip
TITANIC: Implemented CBrainSlot class
Diffstat (limited to 'engines/titanic/game/brain_slot.h')
-rw-r--r--engines/titanic/game/brain_slot.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/engines/titanic/game/brain_slot.h b/engines/titanic/game/brain_slot.h
index 94b6d7f227..fce9ab02c7 100644
--- a/engines/titanic/game/brain_slot.h
+++ b/engines/titanic/game/brain_slot.h
@@ -28,11 +28,17 @@
namespace Titanic {
class CBrainSlot : public CGameObject {
+ DECLARE_MESSAGE_MAP;
+ bool SetFrameMsg(CSetFrameMsg *msg);
+ bool AddHeadPieceMsg(CAddHeadPieceMsg *msg);
+ bool EnterViewMsg(CEnterViewMsg *msg);
+ bool ActMsg(CActMsg *msg);
+ bool MouseDragStartMsg(CMouseDragStartMsg *msg);
public:
- static int _v1, _v2;
+ static bool _added, _woken;
public:
int _value1;
- CString _value2;
+ CString _target;
public:
CLASSDEF;
CBrainSlot() : CGameObject(), _value1(0) {}