Files
cuberite-2a/source/Items/ItemFlowerPot.h
T
2012-12-27 01:01:16 +00:00

25 lines
341 B
C++

#pragma once
#include "ItemHandler.h"
class cItemFlowerPotHandler : public cItemHandler
{
public:
cItemFlowerPotHandler(int a_ItemType)
: cItemHandler(a_ItemType)
{
}
virtual bool IsPlaceable() override
{
return true;
}
virtual BLOCKTYPE GetBlockType() override
{
return E_BLOCK_FLOWER_POT;
}
};