aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/player.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mads/player.cpp')
-rw-r--r--engines/mads/player.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/engines/mads/player.cpp b/engines/mads/player.cpp
index d88feea0d8..e09549c6d9 100644
--- a/engines/mads/player.cpp
+++ b/engines/mads/player.cpp
@@ -35,6 +35,10 @@ Player::Player(MADSEngine *vm): _vm(vm) {
_spritesStart = _numSprites = 0;
_stepEnabled = false;
_visible = false;
+ _visible3 = false;
+ _special = 0;
+ _ticksAmount = 0;
+ _priorTimer = 0;
}
void Player::reset() {
@@ -66,4 +70,21 @@ void Player::moveComplete() {
_action->_inProgress = false;
}
+void Player::setupFrame() {
+ resetActionList();
+ warning("TODO: Player::setupFrame");
+}
+
+void Player::updateFrame() {
+ warning("TODO: Player::updateFrame");
+}
+
+void Player::resetActionList() {
+ warning("TODO: Player::resetActionList");
+}
+
+void Player::idle() {
+ warning("TODO: Player::idle");
+}
+
} // End of namespace MADS