diff options
author | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2011-09-28 23:54:56 +0200 |
---|---|---|
committer | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2011-09-28 23:54:56 +0200 |
commit | 20ecfcc950208862d366c5c065319f423f3c7115 (patch) | |
tree | 7ed821a11f5ec96e558bbcb0b681f77d4712764e /src/net/manaserv/manaserv_protocol.h | |
parent | 93c60c2b94b658e4839641c25f56859706cca921 (diff) | |
download | mana-20ecfcc950208862d366c5c065319f423f3c7115.tar.gz mana-20ecfcc950208862d366c5c065319f423f3c7115.tar.bz2 mana-20ecfcc950208862d366c5c065319f423f3c7115.tar.xz mana-20ecfcc950208862d366c5c065319f423f3c7115.zip |
Officially added the gender in the manaserv protocol - client part.
Diffstat (limited to 'src/net/manaserv/manaserv_protocol.h')
-rw-r--r-- | src/net/manaserv/manaserv_protocol.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/manaserv/manaserv_protocol.h b/src/net/manaserv/manaserv_protocol.h index 49548132..46d46d5e 100644 --- a/src/net/manaserv/manaserv_protocol.h +++ b/src/net/manaserv/manaserv_protocol.h @@ -424,6 +424,18 @@ enum BeingDirection RIGHT = 8 }; +/** + * Beings Genders + * WARNING: Has to be in sync with the same enum in the Being class + * of the client! + */ +enum BeingGender +{ + GENDER_MALE = 0, + GENDER_FEMALE, + GENDER_UNSPECIFIED +}; + } // namespace ManaServ #endif // MANASERV_PROTOCOL_H |