summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemCake.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-03-16 21:33:51 +0100
committerMattes D <github@xoft.cz>2014-03-16 21:33:51 +0100
commit62629825cee10b655870613ebf9fc3bc3ad34389 (patch)
tree3837ad712183dd75932450ea03e98486a7a4669a /src/Items/ItemCake.h
parentDebuggers: Added a test for WE selection API. (diff)
parentChange if-clause in BlockCake.h (diff)
downloadcuberite-62629825cee10b655870613ebf9fc3bc3ad34389.tar
cuberite-62629825cee10b655870613ebf9fc3bc3ad34389.tar.gz
cuberite-62629825cee10b655870613ebf9fc3bc3ad34389.tar.bz2
cuberite-62629825cee10b655870613ebf9fc3bc3ad34389.tar.lz
cuberite-62629825cee10b655870613ebf9fc3bc3ad34389.tar.xz
cuberite-62629825cee10b655870613ebf9fc3bc3ad34389.tar.zst
cuberite-62629825cee10b655870613ebf9fc3bc3ad34389.zip
Diffstat (limited to 'src/Items/ItemCake.h')
-rw-r--r--src/Items/ItemCake.h41
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;
+ }
+} ;
+
+
+
+