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

41 lines
487 B
C
Raw Normal View History

2014-02-18 15:40:02 -05:00
#pragma once
#include "BlockEntity.h"
class cBlockMobHeadHandler final :
2014-02-18 15:40:02 -05:00
public cBlockEntityHandler
{
2020-04-13 12:38:06 -04:00
using Super = cBlockEntityHandler;
2014-02-18 15:40:02 -05: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 09:54:43 -04:00
{
// Drops handled by the block entity:
return {};
2014-02-18 15:40:02 -05:00
}
2015-06-30 10:50:15 -04:00
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
2015-06-30 10:50:15 -04:00
{
UNUSED(a_Meta);
return 0;
}
2014-02-18 15:40:02 -05:00
} ;