summaryrefslogtreecommitdiff
path: root/src/being.h
diff options
context:
space:
mode:
authorBjörn Steinbrink <B.Steinbrink@gmx.de>2006-03-09 05:16:27 +0000
committerBjörn Steinbrink <B.Steinbrink@gmx.de>2006-03-09 05:16:27 +0000
commite5f795ad9952b8bba6993ee3e324b22a0f104816 (patch)
tree1602ac0f74865135eae5acf935b0a285a8e918c2 /src/being.h
parent7593d6c71e2331c3e43c732db60ad03ee4d5385d (diff)
downloadmana-client-e5f795ad9952b8bba6993ee3e324b22a0f104816.tar.gz
mana-client-e5f795ad9952b8bba6993ee3e324b22a0f104816.tar.bz2
mana-client-e5f795ad9952b8bba6993ee3e324b22a0f104816.tar.xz
mana-client-e5f795ad9952b8bba6993ee3e324b22a0f104816.zip
Made all class members named like mClassMember.
Diffstat (limited to 'src/being.h')
-rw-r--r--src/being.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/being.h b/src/being.h
index a3884056..7aeb40a3 100644
--- a/src/being.h
+++ b/src/being.h
@@ -81,17 +81,17 @@ class Being : public Sprite
static const char UP = 4;
static const char RIGHT = 8;
- Uint16 job; /**< Job (player job, npc, monster, ) */
- Uint16 x, y; /**< Tile coordinates */
- Uint8 direction; /**< Facing direction */
- Uint8 action;
+ Uint16 mJob; /**< Job (player job, npc, monster, ) */
+ Uint16 mX, mY; /**< Tile coordinates */
+ Uint8 mDirection; /**< Facing direction */
+ Uint8 mAction;
Uint8 mFrame;
- Sint32 speech_color;
- Uint16 walk_time;
- Uint8 emotion; /**< Currently showing emotion */
- Uint8 emotion_time; /**< Time until emotion disappears */
+ Sint32 mSpeechColor;
+ Uint16 mWalkTime;
+ Uint8 mEmotion; /**< Currently showing emotion */
+ Uint8 mEmotionTime; /**< Time until emotion disappears */
- Uint16 aspd; /**< Attack speed */
+ Uint16 mAttackSpeed; /**< Attack speed */
/**
* Constructor.
@@ -155,7 +155,7 @@ class Being : public Sprite
* Gets the hair color for this being.
*/
Uint16
- getHairColor() const { return hairColor; }
+ getHairColor() const { return mHairColor; }
/**
* Sets the hair style for this being.
@@ -167,7 +167,7 @@ class Being : public Sprite
* Gets the hair style for this being.
*/
Uint16
- getHairStyle() const { return hairStyle; }
+ getHairStyle() const { return mHairStyle; }
/**
* Makes this being take the next step of his path.
@@ -309,12 +309,12 @@ class Being : public Sprite
SpriteIterator mSpriteIterator;
Path mPath;
- std::string speech;
- std::string damage;
- Uint16 hairStyle, hairColor;
- Uint32 speech_time;
- Uint32 damage_time;
- bool showSpeech, showDamage;
+ std::string mSpeech;
+ std::string mDamage;
+ Uint16 mHairStyle, mHairColor;
+ Uint32 mSpeechTime;
+ Uint32 mDamageTime;
+ bool mShowSpeech, mShowDamage;
Sint32 mPx, mPy; /**< Pixel coordinates */
Spriteset *mSpriteset;