summaryrefslogtreecommitdiff
path: root/src/being.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/being.h')
-rw-r--r--src/being.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/being.h b/src/being.h
index 96749651..682d2fd5 100644
--- a/src/being.h
+++ b/src/being.h
@@ -56,10 +56,9 @@ class Text;
enum class Gender
{
- Male = 0,
- Female = 1,
- Unspecified = 2,
- Hidden = 3
+ Neutral,
+ Male,
+ Female
};
class Being : public ActorSprite, public EventListener, public gcn::DeathListener
@@ -166,7 +165,7 @@ class Being : public ActorSprite, public EventListener, public gcn::DeathListene
* Puts a damage bubble above this being.
*
* @param attacker the attacking being
- * @param damage the amount of damage recieved (0 means miss)
+ * @param damage the amount of damage received (0 means miss)
* @param type the attack type
* @param attackId the attack id (used for monsters)
*/
@@ -524,14 +523,13 @@ class Being : public ActorSprite, public EventListener, public gcn::DeathListene
Path mPath;
std::string mSpeech;
Text *mText = nullptr;
- const gcn::Color *mTextColor;
Vector mDest; /**< destination coordinates. */
std::vector<SpriteState> mSpriteStates;
bool mRestoreParticlesOnLogic = false;
- Gender mGender = Gender::Unspecified;
+ Gender mGender = Gender::Neutral;
// Character guild information
std::map<int, Guild*> mGuilds;