diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-03-04 02:58:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-03-04 22:00:41 +0300 |
commit | 46106e962bee32271ee644224c5ac525eb32f888 (patch) | |
tree | c098cb2aa421bff026e499b35f88b7185e995099 /src/being.h | |
parent | 28e10f7225551b1dc2e1f35b8d4d145db528e4c7 (diff) | |
download | plus-46106e962bee32271ee644224c5ac525eb32f888.tar.gz plus-46106e962bee32271ee644224c5ac525eb32f888.tar.bz2 plus-46106e962bee32271ee644224c5ac525eb32f888.tar.xz plus-46106e962bee32271ee644224c5ac525eb32f888.zip |
Add different effects to npc depend on qests status (evol only)
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; |