diff options
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/being.h b/src/being.h index 5649b94cd..00dfbfe74 100644 --- a/src/being.h +++ b/src/being.h @@ -862,6 +862,10 @@ class Being : public ActorSprite, public ConfigListener void updateAwayEffect(); + void addSpecialEffect(const int effect); + + void removeSpecialEffect(); + static uint8_t genderToInt(const Gender sex) A_WARN_UNUSED; static Gender intToGender(uint8_t sex) A_WARN_UNUSED; @@ -1018,7 +1022,7 @@ class Being : public ActorSprite, public ConfigListener bool mInactive; unsigned mNumber; unsigned char mHairColor; - Particle *mAfkParticle; + Particle *mSpecialParticle; }; extern std::list<BeingCacheEntry*> beingInfoCache; |