summaryrefslogblamecommitdiffstats
path: root/source/blocks/BlockMelon.h
blob: d64461780573e04c6d04db1ec58cb62f48d91837 (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 (char)(3 + r1.randInt(4));
	}
};