diff options
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/being/being.h b/src/being/being.h index 83ca7785a..d21ad8acc 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -438,13 +438,13 @@ class Being notfinal : public ActorSprite, /** * Sets the current action. */ - virtual void setAction(const BeingAction::Action &action, + virtual void setAction(const BeingActionT &action, const int attackType); /** * Get the being's action currently performed. */ - BeingAction::Action getCurrentAction() const A_WARN_UNUSED + BeingActionT getCurrentAction() const A_WARN_UNUSED { return mAction; } /** @@ -996,7 +996,7 @@ class Being notfinal : public ActorSprite, int mPreStandTime; Gender::Type mGender; - BeingAction::Action mAction; + BeingActionT mAction; BeingTypeId mSubType; /**< Subtype (graphical view, basically) */ uint8_t mDirection; /**< Facing direction */ uint8_t mDirectionDelayed; /**< Facing direction */ |