aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/game.h
diff options
context:
space:
mode:
authorSven Hesse2009-07-05 11:29:30 +0000
committerSven Hesse2009-07-05 11:29:30 +0000
commit14172febf717702421332dc599e4970a578336cb (patch)
tree5b277dbbb86d90e3bc6f888da890b0b18a4d9e35 /engines/gob/game.h
parent7be3530ffbc0485d56564e8ff015b4979d90b7ad (diff)
downloadscummvm-rg350-14172febf717702421332dc599e4970a578336cb.tar.gz
scummvm-rg350-14172febf717702421332dc599e4970a578336cb.tar.bz2
scummvm-rg350-14172febf717702421332dc599e4970a578336cb.zip
Merging playTot()
svn-id: r42129
Diffstat (limited to 'engines/gob/game.h')
-rw-r--r--engines/gob/game.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/engines/gob/game.h b/engines/gob/game.h
index 7f4f9e2cd2..4a8008a504 100644
--- a/engines/gob/game.h
+++ b/engines/gob/game.h
@@ -94,6 +94,8 @@ public:
virtual void prepareStart();
+ void playTot(int16 skipPlay);
+
void capturePush(int16 left, int16 top, int16 width, int16 height);
void capturePop(char doDraw);
@@ -103,13 +105,11 @@ public:
int16 checkKeys(int16 *pMousex = 0, int16 *pMouseY = 0,
MouseButtons *pButtons = 0, char handleMouse = 0);
- void start(void);
+ void start();
void totSub(int8 flags, const char *newTotFile);
void switchTotSub(int16 index, int16 skipPlay);
- virtual void playTot(int16 skipPlay) = 0;
-
protected:
uint32 _menuLevel;
@@ -133,16 +133,12 @@ class Game_v1 : public Game {
public:
Game_v1(GobEngine *vm);
virtual ~Game_v1() {}
-
- virtual void playTot(int16 skipPlay);
};
class Game_v2 : public Game_v1 {
public:
Game_v2(GobEngine *vm);
virtual ~Game_v2() {}
-
- virtual void playTot(int16 skipPlay);
};
class Game_v6 : public Game_v2 {
@@ -150,7 +146,7 @@ public:
Game_v6(GobEngine *vm);
virtual ~Game_v6() {}
- virtual void prepareStart(void);
+ virtual void prepareStart();
};
} // End of namespace Gob