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