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