summaryrefslogtreecommitdiffstats
path: root/source/Items/ItemBrewingStand.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/Items/ItemBrewingStand.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/source/Items/ItemBrewingStand.h b/source/Items/ItemBrewingStand.h
new file mode 100644
index 000000000..a4fe6bcbe
--- /dev/null
+++ b/source/Items/ItemBrewingStand.h
@@ -0,0 +1,25 @@
+
+#pragma once
+
+#include "ItemHandler.h"
+
+class cItemBrewingStandHandler : public cItemHandler
+{
+public:
+ cItemBrewingStandHandler(int a_ItemType)
+ : cItemHandler(a_ItemType)
+ {
+
+ }
+
+ virtual bool IsPlaceable() override
+ {
+ return true;
+ }
+
+ virtual BLOCKTYPE GetBlockType() override
+ {
+ return E_BLOCK_BREWING_STAND;
+ }
+
+}; \ No newline at end of file