aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/game.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-02-22 11:13:35 -0500
committerPaul Gilbert2014-02-22 11:13:35 -0500
commit82514b4a28904ead97552f6605cd3bde6924660b (patch)
treeb447aceb998600d6bf9293a7bad08f7929648e76 /engines/mads/game.h
parent54c4515232ec26397903373ed46e9492223ce2f2 (diff)
downloadscummvm-rg350-82514b4a28904ead97552f6605cd3bde6924660b.tar.gz
scummvm-rg350-82514b4a28904ead97552f6605cd3bde6924660b.tar.bz2
scummvm-rg350-82514b4a28904ead97552f6605cd3bde6924660b.zip
MADS: Beginnings of cursor initialization
Diffstat (limited to 'engines/mads/game.h')
-rw-r--r--engines/mads/game.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/engines/mads/game.h b/engines/mads/game.h
index 2f0dcf7d48..bb15a8e35b 100644
--- a/engines/mads/game.h
+++ b/engines/mads/game.h
@@ -40,9 +40,18 @@ protected:
* Perform any copy protection check
*/
virtual bool checkCopyProtection() = 0;
+
+ /**
+ * Initialises the current section number of the game
+ */
+ void initSection(int sectionNumber);
+
public:
static Game *init(MADSEngine *vm);
public:
+ int _sectionNumber;
+ int _priorSectionNumber;
+public:
virtual ~Game();
/**