summaryrefslogblamecommitdiffstats
path: root/source/blocks/BlockMelon.h
blob: 921745795d688d0c8d2f37c112a972e0c4cd29e9 (plain) (tree)























                                                
#pragma once
#include "Block.h"


class cBlockMelonHandler : public cBlockHandler
{
public:
	cBlockMelonHandler(BLOCKTYPE a_BlockID)
		: cBlockHandler(a_BlockID)
	{
	}
	
	
	virtual int GetDropID()
	{
		return E_ITEM_MELON_SLICE;
	}

	virtual char GetDropCount()
	{
		MTRand r1;
		return 3 + r1.randInt(4);
	}
};