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