blob: 1e1e4c8d6f8e3d205d0b86f0714e67a8497f7142 (
plain) (
tree)
|
|
#pragma once
#include "BlockEntity.h"
class cBlockMobHeadHandler final :
public cBlockEntityHandler
{
using Super = cBlockEntityHandler;
public:
using Super::Super;
private:
virtual cItems ConvertToPickups(NIBBLETYPE a_BlockMeta, const cEntity * a_Digger, const cItem * a_Tool) const override
{
// Drops handled by the block entity:
return {};
}
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
{
UNUSED(a_Meta);
return 0;
}
} ;
|