summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-09-28 22:54:47 +0200
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-09-28 22:54:47 +0200
commit7c2a0d292b3c39a7947563c1fc1df50423bf2a8f (patch)
tree4036bd5fe6af69931062df4ab2eab4a1c6d9ade6 /src/common
parent2a57ef8fb0e95709b0758ce4b9fa8aff62f811fd (diff)
downloadmanaserv-7c2a0d292b3c39a7947563c1fc1df50423bf2a8f.tar.gz
manaserv-7c2a0d292b3c39a7947563c1fc1df50423bf2a8f.tar.xz
manaserv-7c2a0d292b3c39a7947563c1fc1df50423bf2a8f.zip
Officially added the being gender to the protocol.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/manaserv_protocol.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/common/manaserv_protocol.h b/src/common/manaserv_protocol.h
index 532eff6..5bcfeb6 100644
--- a/src/common/manaserv_protocol.h
+++ b/src/common/manaserv_protocol.h
@@ -431,6 +431,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