summaryrefslogtreecommitdiffstats
path: root/src/Defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Defines.h')
-rw-r--r--src/Defines.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/Defines.h b/src/Defines.h
index f8af22ef2..a1de94897 100644
--- a/src/Defines.h
+++ b/src/Defines.h
@@ -203,6 +203,42 @@ enum eMobHeadRotation
+enum eHand
+{
+ hMain = 0,
+ hOff = 1,
+} ;
+
+
+
+
+
+enum eMainHand
+{
+ mhLeft = 0,
+ mhRight = 1,
+} ;
+
+
+
+
+
+enum eSkinPart
+{
+ spCape = 0x01,
+ spJacket = 0x02,
+ spLeftSleeve = 0x04,
+ spRightSleeve = 0x08,
+ spLeftPants = 0x10,
+ spRightPants = 0x20,
+ spHat = 0x40,
+ spMask = 0x7F,
+};
+
+
+
+
+
inline const char * ClickActionToString(int a_ClickAction)
{
switch (a_ClickAction)