2012-09-23 22:09:57 +00:00
|
|
|
|
2012-08-23 20:41:48 +00:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 22:09:57 +00:00
|
|
|
#include "ItemHandler.h"
|
|
|
|
#include "../World.h"
|
2012-08-23 20:41:48 +00:00
|
|
|
|
|
|
|
class cItemSignHandler : public cItemHandler
|
|
|
|
{
|
|
|
|
public:
|
2012-10-18 19:41:29 +00:00
|
|
|
cItemSignHandler(int a_ItemType)
|
|
|
|
: cItemHandler(a_ItemType)
|
2012-08-23 20:41:48 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool IsPlaceable() override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual BLOCKTYPE GetBlockType() override
|
|
|
|
{
|
|
|
|
return E_BLOCK_SIGN_POST;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|