summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemSugarcane.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemSugarcane.h')
-rw-r--r--src/Items/ItemSugarcane.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/Items/ItemSugarcane.h b/src/Items/ItemSugarcane.h
deleted file mode 100644
index b870f38f1..000000000
--- a/src/Items/ItemSugarcane.h
+++ /dev/null
@@ -1,51 +0,0 @@
-
-#pragma once
-
-#include "ItemHandler.h"
-
-
-
-
-
-class cItemSugarcaneHandler:
- public cItemHandler
-{
- using Super = cItemHandler;
-
-public:
-
- cItemSugarcaneHandler(int a_ItemType):
- Super(a_ItemType)
- {
- }
-
-
-
-
-
- virtual bool IsPlaceable(void) override
- {
- return true;
- }
-
-
-
-
-
- virtual bool GetPlacementBlockTypeMeta(
- cWorld * a_World, cPlayer * a_Player,
- const Vector3i a_PlacedBlockPos,
- eBlockFace a_ClickedBlockFace,
- const Vector3i a_CursorPos,
- BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
- ) override
- {
- a_BlockType = E_BLOCK_SUGARCANE;
- a_BlockMeta = 0;
- return true;
- }
-} ;
-
-
-
-