c68aa68c69
git-svn-id: http://mc-server.googlecode.com/svn/trunk@977 0a769ca7-a7f5-676a-18bf-c427514a06d6
26 lines
412 B
C++
26 lines
412 B
C++
|
|
#pragma once
|
|
|
|
#include "ItemHandler.h"
|
|
#include "../World.h"
|
|
|
|
class cItemDoorHandler : public cItemHandler
|
|
{
|
|
public:
|
|
cItemDoorHandler(int a_ItemType)
|
|
: cItemHandler(a_ItemType)
|
|
{
|
|
|
|
}
|
|
|
|
virtual bool IsPlaceable() override
|
|
{
|
|
return true;
|
|
}
|
|
|
|
virtual BLOCKTYPE GetBlockType() override
|
|
{
|
|
return (m_ItemType == E_ITEM_WOODEN_DOOR) ? E_BLOCK_WOODEN_DOOR : E_BLOCK_IRON_DOOR;
|
|
}
|
|
|
|
}; |