summaryrefslogtreecommitdiffstats
path: root/source/items
diff options
context:
space:
mode:
Diffstat (limited to 'source/items')
-rw-r--r--source/items/ItemBed.h25
-rw-r--r--source/items/ItemHandler.cpp4
2 files changed, 29 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
diff --git a/source/items/ItemHandler.cpp b/source/items/ItemHandler.cpp
index 44f6438e1..63d4f4258 100644
--- a/source/items/ItemHandler.cpp
+++ b/source/items/ItemHandler.cpp
@@ -26,6 +26,7 @@
#include "ItemDoor.h"
#include "ItemFood.h"
#include "ItemSign.h"
+#include "ItemBed.h"
#include "../blocks/BlockHandler.h"
@@ -166,6 +167,9 @@ cItemHandler *cItemHandler::CreateItemHandler(int a_ItemID)
case E_ITEM_SIGN:
return new cItemSignHandler(a_ItemID);
+
+ case E_ITEM_BED:
+ return new cItemBedHandler(a_ItemID);
}
}