aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/game.h
diff options
context:
space:
mode:
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();
/**