summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockGlowstone.h
blob: 8d05cd79970c843914714d0e9b9f5123d585d79c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once
#include "Block.h"


class cBlockGlowstoneHandler : public cBlockHandler
{
public:
	cBlockGlowstoneHandler(BLOCKTYPE a_BlockID)
		: cBlockHandler(a_BlockID)
	{
	}
	
	virtual char GetDropMeta(char a_BlockMeta)
	{
		return 0;
	}

	virtual int GetDropID()
	{
		return E_ITEM_GLOWSTONE_DUST;
	}
};