blob: fb81a07d851552805e2d147c404993ec8e0c9c51 (
plain) (
tree)
|
|
#pragma once
#include "BlockEntity.h"
class cBlockMobHeadHandler :
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;
}
} ;
|