blob: 22b02a2c7d78b0cca1da6f4eef965031ceb4a806 (
plain) (
tree)
|
|
#pragma once
#include "BlockEntity.h"
#include "Mixins.h"
class cBlockJukeboxHandler :
public cClearMetaOnDrop<cBlockEntityHandler>
{
using super = cClearMetaOnDrop<cBlockEntityHandler>;
public:
cBlockJukeboxHandler(BLOCKTYPE a_BlockType):
super(a_BlockType)
{
}
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override
{
UNUSED(a_Meta);
return 6;
}
} ;
|