summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockBrewingStand.h
blob: 57642bcb61a3e8aafeaaa66491a5faf0871b9f15 (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
25
26
27
28
29
30
31
32

#pragma once

#include "BlockHandler.h"





class cBlockBrewingStandHandler :
	public cBlockHandler
{
public:
	cBlockBrewingStandHandler(BLOCKTYPE a_BlockType)
		: cBlockHandler(a_BlockType)
	{
	}

	virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
	{
		a_Pickups.push_back(cItem(E_ITEM_BREWING_STAND, 1, 0));
	}

	virtual bool IsUseable() override
	{
		return true;
	}
} ;