diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-12 10:22:34 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-12 10:22:34 +0200 |
commit | 007e75de9defc3d96ac61400fa983da812b4b15e (patch) | |
tree | df77165a9f41881d373ec08e5c336c899f387481 /source/Defines.h | |
parent | Added cWorld::SetSignLines(), re-exported to Lua manually to avoid ghost return values (diff) | |
download | cuberite-007e75de9defc3d96ac61400fa983da812b4b15e.tar cuberite-007e75de9defc3d96ac61400fa983da812b4b15e.tar.gz cuberite-007e75de9defc3d96ac61400fa983da812b4b15e.tar.bz2 cuberite-007e75de9defc3d96ac61400fa983da812b4b15e.tar.lz cuberite-007e75de9defc3d96ac61400fa983da812b4b15e.tar.xz cuberite-007e75de9defc3d96ac61400fa983da812b4b15e.tar.zst cuberite-007e75de9defc3d96ac61400fa983da812b4b15e.zip |
Diffstat (limited to 'source/Defines.h')
-rw-r--r-- | source/Defines.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source/Defines.h b/source/Defines.h index b76da2f29..f52050a9b 100644 --- a/source/Defines.h +++ b/source/Defines.h @@ -37,12 +37,12 @@ extern bool g_BlockOneHitDig[]; enum { BLOCK_FACE_NONE = -1, // Interacting with no block face - swinging the item in the air - BLOCK_FACE_BOTTOM = 0, // Interacting with the bottom face of the block - BLOCK_FACE_TOP = 1, // Interacting with the top face of the block - BLOCK_FACE_NORTH = 2, // Interacting with the northern face of the block - BLOCK_FACE_SOUTH = 3, // Interacting with the southern face of the block - BLOCK_FACE_WEST = 4, // Interacting with the western face of the block - BLOCK_FACE_EAST = 5, // Interacting with the eastern face of the block + BLOCK_FACE_BOTTOM = 0, // Interacting with the bottom face of the block (YM) + BLOCK_FACE_TOP = 1, // Interacting with the top face of the block (YP) + BLOCK_FACE_NORTH = 2, // Interacting with the northern face of the block (ZP) + BLOCK_FACE_SOUTH = 3, // Interacting with the southern face of the block (ZM) + BLOCK_FACE_WEST = 4, // Interacting with the western face of the block (XP) + BLOCK_FACE_EAST = 5, // Interacting with the eastern face of the block (XM) } ; |