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

45 lines
537 B
C
Raw Normal View History

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