#pragma once #include "BlockEntity.h" class cBlockFlowerPotHandler : public cClearMetaOnDrop { using super = cClearMetaOnDrop; public: cBlockFlowerPotHandler(BLOCKTYPE a_BlockType): super(a_BlockType) { } virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override { UNUSED(a_Meta); return 0; } } ;