summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockBrewingStand.h
blob: 77e383b161f4421485cca5d6648110676f049bbe (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

#pragma once

#include "BlockHandler.h"
#include "ClearMetaOnDrop.h"





class cBlockBrewingStandHandler :
	public cClearMetaOnDrop<cBlockHandler>
{
public:
	cBlockBrewingStandHandler(BLOCKTYPE a_BlockType)
		: cClearMetaOnDrop<cBlockHandler>(a_BlockType)
	{
	}

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