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