diff options
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/being.h b/src/being.h index 88fcae859..7c8fcb173 100644 --- a/src/being.h +++ b/src/being.h @@ -861,6 +861,8 @@ class Being : public ActorSprite, public ConfigListener void removeSpecialEffect(); + void addEffect(const std::string &name); + static uint8_t genderToInt(const Gender sex) A_WARN_UNUSED; static Gender intToGender(uint8_t sex) A_WARN_UNUSED; @@ -890,6 +892,8 @@ class Being : public ActorSprite, public ConfigListener /** Time until the last speech sentence disappears */ int mSpeechTime; + AnimatedSprite* mAnimationEffect; + int mAttackSpeed; /**< Attack speed */ Action mAction; /**< Action the being is performing */ |