diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-02-24 20:15:19 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-02-24 20:15:19 +0000 |
commit | 1c4742e530271e10ae949cf7e85402bee867e298 (patch) | |
tree | f95927614c4f9a84a507c9425b882f945be6d09f /src/being.h | |
parent | 05a12d5568111fa13759026442ed358605bf9a28 (diff) | |
download | mana-1c4742e530271e10ae949cf7e85402bee867e298.tar.gz mana-1c4742e530271e10ae949cf7e85402bee867e298.tar.bz2 mana-1c4742e530271e10ae949cf7e85402bee867e298.tar.xz mana-1c4742e530271e10ae949cf7e85402bee867e298.zip |
Another bunch of cosmetic cleanups, ie mostly typedefs...
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/being.h b/src/being.h index db6afbb8..6f8e578c 100644 --- a/src/being.h +++ b/src/being.h @@ -48,6 +48,8 @@ struct PATH_NODE unsigned short x; unsigned short y; }; +typedef std::list<PATH_NODE> Path; +typedef Path::iterator PathIterator; class Being : public Sprite { @@ -291,7 +293,7 @@ class Being : public Sprite * Sets the new path for this being. */ void - setPath(std::list<PATH_NODE> path); + setPath(const Path &path); /** * Calculates the offset in the given directions. @@ -304,9 +306,9 @@ class Being : public Sprite Uint16 mWalkSpeed; /**< Walking speed */ Map *mMap; /**< Map on which this being resides */ std::string mName; /**< Name of character */ - Sprites::iterator mSpriteIterator; + SpriteIterator mSpriteIterator; - std::list<PATH_NODE> mPath; + Path mPath; std::string speech; std::string damage; Uint16 hairStyle, hairColor; |