1
0
Fork 0
cuberite-2a/src/Blocks/BlockFlowerPot.h

40 lines
501 B
C
Raw Normal View History

#pragma once
2014-03-07 00:30:34 +00:00
#include "BlockEntity.h"
class cBlockFlowerPotHandler :
public cBlockEntityHandler
{
2020-04-13 16:38:06 +00:00
using Super = cBlockEntityHandler;
public:
using Super::Super;
private:
virtual cItems ConvertToPickups(NIBBLETYPE a_BlockMeta, cBlockEntity * a_BlockEntity, const cEntity * a_Digger, const cItem * a_Tool) const override
{
return cItem(E_ITEM_FLOWER_POT, 1, 0);
}
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
2015-06-30 14:50:15 +00:00
{
UNUSED(a_Meta);
return 0;
}
} ;