86a991c5a8
git-svn-id: http://mc-server.googlecode.com/svn/trunk@677 0a769ca7-a7f5-676a-18bf-c427514a06d6
25 lines
398 B
C++
25 lines
398 B
C++
#pragma once
|
|
|
|
#include "Item.h"
|
|
#include "../cWorld.h"
|
|
|
|
class cItemDoorHandler : public cItemHandler
|
|
{
|
|
public:
|
|
cItemDoorHandler(int a_ItemID)
|
|
: cItemHandler(a_ItemID)
|
|
{
|
|
|
|
}
|
|
|
|
virtual bool IsPlaceable() override
|
|
{
|
|
return true;
|
|
}
|
|
|
|
virtual BLOCKTYPE GetBlockType() override
|
|
{
|
|
return (m_ItemID == E_ITEM_WOODEN_DOOR) ? E_BLOCK_WOODEN_DOOR : E_BLOCK_IRON_DOOR;
|
|
}
|
|
|
|
}; |