aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/gui.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-01-03 21:59:57 +0100
committerEugene Sandulenko2016-01-03 21:59:57 +0100
commit0b361b94dc303f95a636e8d183aca7f3854f00e4 (patch)
tree44c1525f8ff6d2a9ad5a2e95abd59a5e84699b7e /engines/wage/gui.h
parent562355e62dddedaddb40555b0e5dff5468322bb4 (diff)
downloadscummvm-rg350-0b361b94dc303f95a636e8d183aca7f3854f00e4.tar.gz
scummvm-rg350-0b361b94dc303f95a636e8d183aca7f3854f00e4.tar.bz2
scummvm-rg350-0b361b94dc303f95a636e8d183aca7f3854f00e4.zip
WAGE: Initial cursor drawing code
Diffstat (limited to 'engines/wage/gui.h')
-rw-r--r--engines/wage/gui.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/wage/gui.h b/engines/wage/gui.h
index 4f2815b18e..1a82c8f713 100644
--- a/engines/wage/gui.h
+++ b/engines/wage/gui.h
@@ -85,9 +85,14 @@ private:
const Graphics::Font *getTitleFont();
const Graphics::Font *getFont(const char *name, Graphics::FontManager::FontUsage fallback);
+public:
+ Graphics::Surface _screen;
+ int _cursorX, _cursorY;
+ bool _cursorState;
+ Common::Rect _consoleTextArea;
+
private:
WageEngine *_engine;
- Graphics::Surface _screen;
Graphics::Surface _console;
Scene *_scene;
bool _sceneDirty;
@@ -104,7 +109,6 @@ private:
bool _builtInFonts;
- Common::Rect _consoleTextArea;
Common::Rect _sceneArea;
bool _sceneIsActive;
bool _cursorIsArrow;