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