diff options
author | Philipp Sehmisch <tmw@crushnet.org> | 2008-02-22 18:50:48 +0000 |
---|---|---|
committer | Philipp Sehmisch <tmw@crushnet.org> | 2008-02-22 18:50:48 +0000 |
commit | 3d97d69ca9b0521aa0f49db0b739d50afc00318e (patch) | |
tree | ae56ca6977a9e335fb821a4d22f1d3a08ca3b25b /src/player.h | |
parent | 49eb5c5779885e6b7580c0e8459609fb228c3ec8 (diff) | |
download | mana-client-3d97d69ca9b0521aa0f49db0b739d50afc00318e.tar.gz mana-client-3d97d69ca9b0521aa0f49db0b739d50afc00318e.tar.bz2 mana-client-3d97d69ca9b0521aa0f49db0b739d50afc00318e.tar.xz mana-client-3d97d69ca9b0521aa0f49db0b739d50afc00318e.zip |
Merged creation of female characters from Legend of Mazzeroth.
Diffstat (limited to 'src/player.h')
-rw-r--r-- | src/player.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/player.h b/src/player.h index eb642d20..7e742a7a 100644 --- a/src/player.h +++ b/src/player.h @@ -29,6 +29,11 @@ class Graphics; class Map; +enum Gender { + GENDER_MALE = 0, + GENDER_FEMALE = 1 +}; + /** * A player being. Players have their name drawn beneath them. This class also * implements player-specific loading of base sprite, hair sprite and equipment |