Files
cuberite-2a/source/Blocks/BlockMelon.h
T

36 lines
495 B
C++
Raw Normal View History

2012-07-15 20:36:34 +00:00
#pragma once
#include "BlockHandler.h"
2012-07-15 20:36:34 +00:00
class cBlockMelonHandler :
public cBlockHandler
2012-07-15 20:36:34 +00:00
{
public:
cBlockMelonHandler(BLOCKTYPE a_BlockType)
: cBlockHandler(a_BlockType)
2012-07-15 20:36:34 +00:00
{
}
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
2012-07-15 20:36:34 +00:00
{
MTRand r1;
a_Pickups.push_back(cItem(E_ITEM_MELON_SLICE, (char)(3 + r1.randInt(4)), 0));
2012-07-15 20:36:34 +00:00
}
2012-09-11 12:01:34 +00:00
virtual const char * GetStepSound(void) override
2012-09-11 12:01:34 +00:00
{
return "step.wood";
}
} ;