aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/phantom/game_phantom.h
diff options
context:
space:
mode:
authorStrangerke2015-11-03 23:07:47 +0100
committerStrangerke2015-11-03 23:07:47 +0100
commit9d6bb85ce3e42e30f1d539a5f2c7a8d7de3b15a1 (patch)
tree0225d579ad5b84b206a3268094896c8c49396b69 /engines/mads/phantom/game_phantom.h
parent04868be95b617bb64e0e468eeb16915af19993f8 (diff)
downloadscummvm-rg350-9d6bb85ce3e42e30f1d539a5f2c7a8d7de3b15a1.tar.gz
scummvm-rg350-9d6bb85ce3e42e30f1d539a5f2c7a8d7de3b15a1.tar.bz2
scummvm-rg350-9d6bb85ce3e42e30f1d539a5f2c7a8d7de3b15a1.zip
MADS: Phantom: Implement exitCatacombs
Diffstat (limited to 'engines/mads/phantom/game_phantom.h')
-rw-r--r--engines/mads/phantom/game_phantom.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/mads/phantom/game_phantom.h b/engines/mads/phantom/game_phantom.h
index 1ba8ade815..921d7a23be 100644
--- a/engines/mads/phantom/game_phantom.h
+++ b/engines/mads/phantom/game_phantom.h
@@ -95,7 +95,8 @@ class GamePhantom : public Game {
friend class Game;
private:
- Catacombs *catacombs;
+ Catacombs *_catacombs;
+ int _catacombSize;
protected:
GamePhantom(MADSEngine *vm);
@@ -127,7 +128,7 @@ public:
void enterCatacombs(int val);
void initCatacombs();
void moveCatacombs(int dir) { warning("TODO: moveCataCombs"); };
- int exitCatacombs(int dir) { warning("TODO: exitCatacombs"); return -1; };
+ int exitCatacombs(int dir);
};