diff options
Diffstat (limited to 'engines/hopkins/hopkins.h')
-rw-r--r-- | engines/hopkins/hopkins.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/engines/hopkins/hopkins.h b/engines/hopkins/hopkins.h index d8c30e5004..615eace374 100644 --- a/engines/hopkins/hopkins.h +++ b/engines/hopkins/hopkins.h @@ -48,6 +48,7 @@ #include "common/util.h" #include "engines/engine.h" #include "graphics/surface.h" +#include "gui/debugger.h" /** * This is the namespace of the Hopkins engine. @@ -59,10 +60,6 @@ */ namespace Hopkins { -#define DEBUG_BASIC 1 -#define DEBUG_INTERMEDIATE 2 -#define DEBUG_DETAILED 3 - #define SCREEN_WIDTH 640 #define SCREEN_HEIGHT 480 @@ -136,6 +133,8 @@ protected: virtual Common::Error run(); virtual bool hasFeature(EngineFeature f) const; + GUI::Debugger *getDebugger() { return _debug; } + public: AnimationManager *_animMan; ComputerManager *_computer; |