aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/player.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-03-29 11:18:07 -0400
committerPaul Gilbert2014-03-29 11:18:07 -0400
commit71b1343adf6e886cfd2e1a0040a12b5025672d14 (patch)
treef21fb355b8fc2aeab61b8078c929a29f43decc26 /engines/mads/player.h
parentd801c2ffdd1b2e5cfefcea18309a4779e0a824a1 (diff)
downloadscummvm-rg350-71b1343adf6e886cfd2e1a0040a12b5025672d14.tar.gz
scummvm-rg350-71b1343adf6e886cfd2e1a0040a12b5025672d14.tar.bz2
scummvm-rg350-71b1343adf6e886cfd2e1a0040a12b5025672d14.zip
MADS: Implemented NebularGame::step
Diffstat (limited to 'engines/mads/player.h')
-rw-r--r--engines/mads/player.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/mads/player.h b/engines/mads/player.h
index 2a9274840c..7ff14be191 100644
--- a/engines/mads/player.h
+++ b/engines/mads/player.h
@@ -60,7 +60,6 @@ private:
int _routeLength;
int _stopWalkerList[12];
int _stopWalkerTrigger[12];
- int _stopWalkerIndex;
int _totalDistance;
void clearStopList();
@@ -147,6 +146,7 @@ public:
bool _forceRefresh;
bool _needToWalk;
bool _readyToWalk;
+ int _stopWalkerIndex;
int _centerOfGravity;
int _currentDepth;
int _currentScale;
@@ -218,7 +218,10 @@ public:
void nextFrame();
- void step();
+ /**
+ * Add a walker to the current queue
+ */
+ void addWalker(int walker, int trigger);
};
} // End of namespace MADS