From 15424641cca695650f4b56c37711c12c81cf2c32 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 14 Nov 2015 17:25:37 +0300 Subject: Add cast action to beings. --- src/being/being.cpp | 4 ++++ src/being/being.h | 2 ++ 2 files changed, 6 insertions(+) (limited to 'src/being') diff --git a/src/being/being.cpp b/src/being/being.cpp index b4ea52df1..dd06c918d 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -1358,6 +1358,7 @@ std::string Being::getAttackAction(const Attack *const attack1) const getSpriteAction(Dead, DEAD) getSpriteAction(Spawn, SPAWN) +getSpriteAction(Cast, CAST) std::string Being::getStandAction() const { @@ -1442,6 +1443,9 @@ void Being::setAction(const BeingActionT &action, const int attackId) } } break; + case BeingAction::CAST: + currentAction = getCastAction(); + break; case BeingAction::HURT: if (mInfo) { diff --git a/src/being/being.h b/src/being/being.h index 11518a3c0..9c9fd6ade 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -597,6 +597,8 @@ class Being notfinal : public ActorSprite, */ std::string getSitAction() const A_WARN_UNUSED; + std::string getCastAction() const A_WARN_UNUSED; + std::string getMoveAction() const A_WARN_UNUSED; std::string getDeadAction() const A_WARN_UNUSED; -- cgit v1.2.3-70-g09d2