summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockMelon.h
blob: d64461780573e04c6d04db1ec58cb62f48d91837 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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));
	}
};