diff options
author | Pokechu22 <pokechu022@gmail.com> | 2017-01-03 21:19:29 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2017-01-03 21:19:29 +0100 |
commit | 9c2a0bb7b9e2d8402813f4755398884a801fec59 (patch) | |
tree | aafb4b43ee81c59eea01d06b725e04e332ca36ea /src/Defines.h | |
parent | Debuggers: PluginStats are now output only on request. (#3513) (diff) | |
download | cuberite-9c2a0bb7b9e2d8402813f4755398884a801fec59.tar cuberite-9c2a0bb7b9e2d8402813f4755398884a801fec59.tar.gz cuberite-9c2a0bb7b9e2d8402813f4755398884a801fec59.tar.bz2 cuberite-9c2a0bb7b9e2d8402813f4755398884a801fec59.tar.lz cuberite-9c2a0bb7b9e2d8402813f4755398884a801fec59.tar.xz cuberite-9c2a0bb7b9e2d8402813f4755398884a801fec59.tar.zst cuberite-9c2a0bb7b9e2d8402813f4755398884a801fec59.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Defines.h | 36 |
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) |