aboutsummaryrefslogtreecommitdiff
path: root/engines/made/made.h
diff options
context:
space:
mode:
authorDavid Turner2010-11-08 12:17:19 +0000
committerDavid Turner2010-11-08 12:17:19 +0000
commitc76f0c6c022766a2db7e96e3e68260d3b9bd7a25 (patch)
tree53274d387959460cd089424c8be63c2328f29970 /engines/made/made.h
parent416025cda90f23ea5b94c88dcea0c202df279223 (diff)
downloadscummvm-rg350-c76f0c6c022766a2db7e96e3e68260d3b9bd7a25.tar.gz
scummvm-rg350-c76f0c6c022766a2db7e96e3e68260d3b9bd7a25.tar.bz2
scummvm-rg350-c76f0c6c022766a2db7e96e3e68260d3b9bd7a25.zip
MADE: Added basic debugging console to engine
MADE does not currently use Debug Channels, but this does provide a base for adding them along with any other debugging commands. svn-id: r54139
Diffstat (limited to 'engines/made/made.h')
-rw-r--r--engines/made/made.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/made/made.h b/engines/made/made.h
index ed391562c3..290e3e648a 100644
--- a/engines/made/made.h
+++ b/engines/made/made.h
@@ -47,6 +47,7 @@
#include "engines/engine.h"
#include "made/sound.h"
+#include "made/console.h"
/**
* This is the namespace of the Made engine.
@@ -101,6 +102,8 @@ public:
virtual bool hasFeature(EngineFeature f) const;
virtual void syncSoundSettings();
+ GUI::Debugger *getDebugger() { return _console; }
+
int getGameId() {
return _gameId;
}
@@ -113,6 +116,7 @@ public:
Common::Platform getPlatform() const;
private:
+ MadeConsole *_console;
public:
PmvPlayer *_pmvPlayer;
ResourceReader *_res;