diff options
Diffstat (limited to 'engines/cge/cge.h')
-rw-r--r-- | engines/cge/cge.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/engines/cge/cge.h b/engines/cge/cge.h index 2ce154a4fb..4ebc836ee0 100644 --- a/engines/cge/cge.h +++ b/engines/cge/cge.h @@ -31,11 +31,12 @@ #include "engines/engine.h" #include "gui/debugger.h" #include "graphics/surface.h" -#include "engines/advancedDetector.h" #include "cge/console.h" #include "cge/bitmap.h" #include "cge/sound.h" +struct ADGameDescription; + namespace CGE { class Console; @@ -73,8 +74,9 @@ class Talk; #define kPathMax 128 #define kCryptSeed 0xA5 #define kMaxFile 128 -#define kMapXCnt 40 -#define kMapZCnt 20 +#define kMapXCnt 40 +#define kMapZCnt 20 +#define kMapTop 80 // our engine debug channels enum { @@ -140,6 +142,8 @@ public: virtual Common::Error saveGameState(int slot, const Common::String &desc); static const int _maxSceneArr[5]; + bool _quitFlag; + bool _showBoundariesFl; const ADGameDescription *_gameDescription; int _startupMode; @@ -222,7 +226,7 @@ public: void runGame(); bool showTitle(const char *name); void movie(const char *ext); - void inf(const char *text); + void inf(const char *text, bool wideSpace = false); void selectSound(); void dummy() {} void NONE(); |