diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-03-16 20:26:13 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-03-16 20:26:13 +0100 |
commit | 4ec5a95a7a690cb69fb5e9f44b2c9c2b3b678d09 (patch) | |
tree | 23cb24a4ce967e8202abdcc35537c53222fcdeaf /src/Items/ItemCake.h | |
parent | Debuggers: Added a test for WE selection API. (diff) | |
download | cuberite-4ec5a95a7a690cb69fb5e9f44b2c9c2b3b678d09.tar cuberite-4ec5a95a7a690cb69fb5e9f44b2c9c2b3b678d09.tar.gz cuberite-4ec5a95a7a690cb69fb5e9f44b2c9c2b3b678d09.tar.bz2 cuberite-4ec5a95a7a690cb69fb5e9f44b2c9c2b3b678d09.tar.lz cuberite-4ec5a95a7a690cb69fb5e9f44b2c9c2b3b678d09.tar.xz cuberite-4ec5a95a7a690cb69fb5e9f44b2c9c2b3b678d09.tar.zst cuberite-4ec5a95a7a690cb69fb5e9f44b2c9c2b3b678d09.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemCake.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/Items/ItemCake.h b/src/Items/ItemCake.h new file mode 100644 index 000000000..48e23ed59 --- /dev/null +++ b/src/Items/ItemCake.h @@ -0,0 +1,41 @@ + +#pragma once + +#include "ItemHandler.h" + + + + + +class cItemCakeHandler : + public cItemHandler +{ +public: + cItemCakeHandler(int a_ItemType) : + cItemHandler(a_ItemType) + { + } + + + virtual bool IsPlaceable(void) override + { + return true; + } + + + virtual bool GetPlacementBlockTypeMeta( + cWorld * a_World, cPlayer * a_Player, + int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, + int a_CursorX, int a_CursorY, int a_CursorZ, + BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta + ) override + { + a_BlockType = E_BLOCK_CAKE; + a_BlockMeta = 0; + return true; + } +} ; + + + + |