aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/scene.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-03-04 09:33:57 -0500
committerPaul Gilbert2014-03-04 09:33:57 -0500
commitf6888eef1069ac5df07c3f4dcc3a30755bc4ebb0 (patch)
treeb7e70ea90d6a266101da6080e2142f750dfdb965 /engines/mads/scene.h
parent9e356dd945863a4c4dfa89f2a94dd1a56c2d03a6 (diff)
downloadscummvm-rg350-f6888eef1069ac5df07c3f4dcc3a30755bc4ebb0.tar.gz
scummvm-rg350-f6888eef1069ac5df07c3f4dcc3a30755bc4ebb0.tar.bz2
scummvm-rg350-f6888eef1069ac5df07c3f4dcc3a30755bc4ebb0.zip
MADS: Implementation of timer functionality for Scene::doFrame
Diffstat (limited to 'engines/mads/scene.h')
-rw-r--r--engines/mads/scene.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/mads/scene.h b/engines/mads/scene.h
index f6eecbf093..483ecae23c 100644
--- a/engines/mads/scene.h
+++ b/engines/mads/scene.h
@@ -87,7 +87,7 @@ public:
byte *_vocabBuffer;
Common::Array<int> _activeVocabs;
SequenceList _sequences;
- KernelMessages _messages;
+ KernelMessages _kernelMessages;
Common::String _talkFont;
int _textSpacing;
Common::Array<Hotspot> _hotspots;
@@ -184,6 +184,11 @@ public:
void loop();
/**
+ * Draw all the elements onto the scene
+ */
+ void drawElements(bool transitionFlag, bool surfaceFlag);
+
+ /**
* Execute a click within the scene
*/
void leftClick();