aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/sherlock.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sherlock/sherlock.h')
-rw-r--r--engines/sherlock/sherlock.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/sherlock/sherlock.h b/engines/sherlock/sherlock.h
index 781851db71..88fbff74f9 100644
--- a/engines/sherlock/sherlock.h
+++ b/engines/sherlock/sherlock.h
@@ -30,11 +30,14 @@
#include "common/savefile.h"
#include "common/hash-str.h"
#include "engines/engine.h"
+#include "sherlock/animation.h"
#include "sherlock/debugger.h"
+#include "sherlock/events.h"
#include "sherlock/graphics.h"
#include "sherlock/journal.h"
#include "sherlock/resources.h"
#include "sherlock/room.h"
+#include "sherlock/sound.h"
#include "sherlock/talk.h"
namespace Sherlock {
@@ -67,11 +70,14 @@ protected:
virtual void showOpening() = 0;
public:
const SherlockGameDescription *_gameDescription;
+ Animation *_animation;
Debugger *_debugger;
+ EventsManager *_events;
Journal *_journal;
Resources *_res;
Rooms *_rooms;
Screen *_screen;
+ Sound *_sound;
Talk *_talk;
Common::Array<bool> _flags;
public: