aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/cge.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/cge.h')
-rw-r--r--engines/cge/cge.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/engines/cge/cge.h b/engines/cge/cge.h
index cb2c507ffa..c6d9a099bf 100644
--- a/engines/cge/cge.h
+++ b/engines/cge/cge.h
@@ -22,7 +22,7 @@
#ifndef CGE_H
#define CGE_H
-
+
#include "common/random.h"
#include "engines/engine.h"
#include "gui/debugger.h"
@@ -33,12 +33,12 @@
#define CGE_SAVEGAME_VERSION 1
namespace CGE {
-
+
class Console;
-
+
// our engine debug channels
enum {
- kCGEDebug = 1 << 0
+ kCGEDebug = 1 << 0
};
class CGEEngine : public Engine {
@@ -49,19 +49,21 @@ public:
const ADGameDescription *_gameDescription;
virtual Common::Error run();
- GUI::Debugger *getDebugger() { return _console; }
-
+ GUI::Debugger *getDebugger() {
+ return _console;
+ }
+
private:
CGEConsole *_console;
};
-
+
// Example console class
class Console : public GUI::Debugger {
public:
Console(CGEEngine *vm) {}
virtual ~Console(void) {}
};
-
+
} // End of namespace CGE
-
+
#endif