diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-12 06:44:16 -0600 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-03-12 08:38:07 -0600 |
commit | 37b812f2892a9b11a88abcbcde0b47aca76f4a71 (patch) | |
tree | 6872d9c5420845c50c1ea411c0f999aeb8ffc434 /src/being.h | |
parent | 5b1e2aae6391edc99425ed7671d59eddd774212e (diff) | |
download | mana-37b812f2892a9b11a88abcbcde0b47aca76f4a71.tar.gz mana-37b812f2892a9b11a88abcbcde0b47aca76f4a71.tar.bz2 mana-37b812f2892a9b11a88abcbcde0b47aca76f4a71.tar.xz mana-37b812f2892a9b11a88abcbcde0b47aca76f4a71.zip |
Move emote sprite loading into EmoteDB
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/being.h b/src/being.h index 85e0c080..6f3125c8 100644 --- a/src/being.h +++ b/src/being.h @@ -387,8 +387,6 @@ class Being : public Sprite */ void untarget() { mUsedTargetCursor = NULL; } - AnimatedSprite* getEmote(int index) { return emotionSet[index]; } - void setEmote(Uint8 emotion, Uint8 emote_time) { mEmotion = emotion; @@ -404,10 +402,6 @@ class Being : public Sprite virtual AnimatedSprite* getSprite(int index) const { return mSprites[index]; } - static void load(); - - static void cleanup(); - protected: /** * Sets the new path for this being. @@ -450,8 +444,6 @@ class Being : public Sprite Uint16 mHairStyle, mHairColor; Gender mGender; int mPx, mPy; /**< Pixel coordinates */ - Uint16 mStunMode; /**< Stun mode; zero if not stunned */ - StatusEffects mStatusEffects; /**< Bitset of active status effects */ gcn::Color mNameColor; @@ -474,8 +466,6 @@ class Being : public Sprite // Target cursor being used SimpleAnimation* mUsedTargetCursor; - - static std::vector<AnimatedSprite*> emotionSet; /**< Emoticons used by beings */ }; #endif |