summaryrefslogtreecommitdiff
path: root/src/being.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/being.h')
-rw-r--r--src/being.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/being.h b/src/being.h
index c8abf988f..1f2d88412 100644
--- a/src/being.h
+++ b/src/being.h
@@ -398,6 +398,12 @@ class Being : public ActorSprite, public ConfigListener
{ return mNumberOfHairstyles; }
/**
+ * Get the number of races implemented
+ */
+ static int getNumOfRaces() A_WARN_UNUSED
+ { return mNumberOfRaces; }
+
+ /**
* Get the number of layers used to draw the being
*/
int getNumberOfLayers() const A_WARN_UNUSED
@@ -900,6 +906,7 @@ class Being : public ActorSprite, public ConfigListener
const ItemInfo *mEquippedWeapon;
static int mNumberOfHairstyles; /** Number of hair styles in use */
+ static int mNumberOfRaces; /** Number of races in use */
Path mPath;
std::string mSpeech;