blob: 5b655e71d1247f2ac4ace3f4453482c0ca46591e (
plain) (
tree)
|
|
#pragma once
#include "BlockEntity.h"
#include "Mixins.h"
class cBlockJukeboxHandler :
public cClearMetaOnDrop<cBlockEntityHandler>
{
public:
using cClearMetaOnDrop<cBlockEntityHandler>::cClearMetaOnDrop;
private:
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
{
UNUSED(a_Meta);
return 6;
}
} ;
|