summaryrefslogtreecommitdiffstats
path: root/source/Blocks/BlockBrewingStand.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Blocks/BlockBrewingStand.h')
-rw-r--r--source/Blocks/BlockBrewingStand.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/source/Blocks/BlockBrewingStand.h b/source/Blocks/BlockBrewingStand.h
deleted file mode 100644
index 57642bcb6..000000000
--- a/source/Blocks/BlockBrewingStand.h
+++ /dev/null
@@ -1,32 +0,0 @@
-
-#pragma once
-
-#include "BlockHandler.h"
-
-
-
-
-
-class cBlockBrewingStandHandler :
- public cBlockHandler
-{
-public:
- cBlockBrewingStandHandler(BLOCKTYPE a_BlockType)
- : cBlockHandler(a_BlockType)
- {
- }
-
- virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
- {
- a_Pickups.push_back(cItem(E_ITEM_BREWING_STAND, 1, 0));
- }
-
- virtual bool IsUseable() override
- {
- return true;
- }
-} ;
-
-
-
-