1
0
cuberite-2a/src/Blocks/BlockMobHead.h

41 lines
487 B
C
Raw Normal View History

2014-02-18 20:40:02 +00:00
#pragma once
#include "BlockEntity.h"
class cBlockMobHeadHandler final :
2014-02-18 20:40:02 +00:00
public cBlockEntityHandler
{
2020-04-13 16:38:06 +00:00
using Super = cBlockEntityHandler;
2014-02-18 20:40:02 +00:00
public:
using Super::Super;
private:
virtual cItems ConvertToPickups(NIBBLETYPE a_BlockMeta, const cEntity * a_Digger, const cItem * a_Tool) const override
2014-05-28 13:54:43 +00:00
{
// Drops handled by the block entity:
return {};
2014-02-18 20:40:02 +00:00
}
2015-06-30 14:50:15 +00:00
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
2015-06-30 14:50:15 +00:00
{
UNUSED(a_Meta);
return 0;
}
2014-02-18 20:40:02 +00:00
} ;