aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorD G Turner2013-12-07 01:26:42 +0000
committerD G Turner2013-12-07 01:26:42 +0000
commit521b1c729cc25941a48ecc56f899247a895b407c (patch)
treef860c24c65dc8c1140e4d6e2e0a3e4b6846d2667 /engines
parent05e07eed9cb1fce5cfd4c4df232e3ffac28ba1c0 (diff)
downloadscummvm-rg350-521b1c729cc25941a48ecc56f899247a895b407c.tar.gz
scummvm-rg350-521b1c729cc25941a48ecc56f899247a895b407c.tar.bz2
scummvm-rg350-521b1c729cc25941a48ecc56f899247a895b407c.zip
NEVERHOOD: Add missing getDebugger() for engine API.
Diffstat (limited to 'engines')
-rw-r--r--engines/neverhood/neverhood.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/neverhood/neverhood.h b/engines/neverhood/neverhood.h
index 0561aa251e..4d923d1f0e 100644
--- a/engines/neverhood/neverhood.h
+++ b/engines/neverhood/neverhood.h
@@ -32,6 +32,8 @@
#include "common/system.h"
#include "audio/mixer.h"
#include "engines/engine.h"
+#include "gui/debugger.h"
+#include "neverhood/console.h"
#include "neverhood/messages.h"
namespace Neverhood {
@@ -48,7 +50,6 @@ class Screen;
class SoundMan;
class AudioResourceMan;
class StaticData;
-class Console;
struct NPoint;
struct GameState {
@@ -90,6 +91,7 @@ public:
GameModule *_gameModule;
StaticData *_staticData;
Console *_console;
+ GUI::Debugger *getDebugger() { return _console; }
SoundMan *_soundMan;
AudioResourceMan *_audioResourceMan;