aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game/cdrom_computer.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-04-08 18:42:18 -0400
committerPaul Gilbert2016-04-08 18:42:18 -0400
commitb27d57c25bdbb4c4f69eaefc6ce7c79f03526abe (patch)
tree90cd196530fe708628b4d26019fa14f16c697a89 /engines/titanic/game/cdrom_computer.h
parente7f2cb1ecbf2637db8dd7be3fe97d485a7c56bc8 (diff)
downloadscummvm-rg350-b27d57c25bdbb4c4f69eaefc6ce7c79f03526abe.tar.gz
scummvm-rg350-b27d57c25bdbb4c4f69eaefc6ce7c79f03526abe.tar.bz2
scummvm-rg350-b27d57c25bdbb4c4f69eaefc6ce7c79f03526abe.zip
TITANIC: Implemented CCDROMComputer
Diffstat (limited to 'engines/titanic/game/cdrom_computer.h')
-rw-r--r--engines/titanic/game/cdrom_computer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/titanic/game/cdrom_computer.h b/engines/titanic/game/cdrom_computer.h
index de070b007b..4ea2f4d568 100644
--- a/engines/titanic/game/cdrom_computer.h
+++ b/engines/titanic/game/cdrom_computer.h
@@ -24,15 +24,15 @@
#define TITANIC_CDROM_COMPUTER_H
#include "titanic/core/game_object.h"
+#include "titanic/messages/mouse_messages.h"
namespace Titanic {
class CCDROMComputer : public CGameObject {
+ DECLARE_MESSAGE_MAP
+ bool MouseButtonDownMsg(CMouseButtonDownMsg *msg);
private:
- int _fieldBC;
- int _fieldC0;
- int _fieldC4;
- int _fieldC8;
+ Rect _clickRect;
public:
CLASSDEF
CCDROMComputer();