summaryrefslogtreecommitdiffstats
path: root/source/items/ItemDoor.h
blob: 5b656ce175a4ca6b6bac4e187d5302d5e4ef22c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

#include "Item.h"
#include "../cWorld.h"

class cItemDoorHandler : public cItemHandler
{
public:
	cItemDoorHandler(int a_ItemID)
		: cItemHandler(a_ItemID)
	{

	}

	virtual bool IsPlaceable()
	{
		return true;
	}

	virtual BLOCKTYPE GetBlockType()
	{
		return (m_ItemID == E_ITEM_WOODEN_DOOR) ? E_BLOCK_WOODEN_DOOR : E_BLOCK_IRON_DOOR;
	}

};