summaryrefslogtreecommitdiffstats
path: root/source/items/ItemSugarcane.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/items/ItemSugarcane.h')
-rw-r--r--source/items/ItemSugarcane.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/source/items/ItemSugarcane.h b/source/items/ItemSugarcane.h
deleted file mode 100644
index 4fdf43428..000000000
--- a/source/items/ItemSugarcane.h
+++ /dev/null
@@ -1,39 +0,0 @@
-
-#pragma once
-
-#include "ItemHandler.h"
-#include "../World.h"
-
-
-
-
-
-class cItemSugarcaneHandler :
- public cItemHandler
-{
-public:
- cItemSugarcaneHandler(int a_ItemID)
- : cItemHandler(a_ItemID)
- {
-
- }
-
- virtual bool IsPlaceable() override
- {
- return true;
- }
-
- virtual BLOCKTYPE GetBlockType() override
- {
- return E_BLOCK_SUGARCANE;
- }
-
- virtual NIBBLETYPE GetBlockMeta(short a_ItemDamage) override
- {
- return 0; //Not grown yet
- }
-} ;
-
-
-
-