diff options
author | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-11-03 09:58:25 +0000 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-11-03 09:58:25 +0000 |
commit | 8a60e11684e84807f3526b37afa8cbf6f103b8fd (patch) | |
tree | 202058890ef2f8f2c5e9873acbb6f59327b28762 /src/player.h | |
parent | 8a0e94b31be13ef9c52b281c32095279d7fa1ca7 (diff) | |
download | mana-8a60e11684e84807f3526b37afa8cbf6f103b8fd.tar.gz mana-8a60e11684e84807f3526b37afa8cbf6f103b8fd.tar.bz2 mana-8a60e11684e84807f3526b37afa8cbf6f103b8fd.tar.xz mana-8a60e11684e84807f3526b37afa8cbf6f103b8fd.zip |
Fixed double load of hair graphics.
Diffstat (limited to 'src/player.h')
-rw-r--r-- | src/player.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/player.h b/src/player.h index e6d3743a..4d4f53f5 100644 --- a/src/player.h +++ b/src/player.h @@ -60,20 +60,15 @@ class Player : public Being { return mHairColor; } /** - * Sets the hair color for this player. - */ - void setHairColor(int color); - - /** * Gets the hair style for this player. */ int getHairStyle() const { return mHairStyle; } /** - * Sets the hair style for this player. + * Sets the hair style and color for this player. */ - void setHairStyle(int style); + void setHairStyle(int style, int color); /** * Sets visible equipments for this player. |