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