summaryrefslogblamecommitdiffstats
path: root/src/Blocks/BlockBrewingStand.h
blob: 77e383b161f4421485cca5d6648110676f049bbe (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                         
                            





                                 
                                              


                                                        
                                                              


         








                                         

#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;
	}
} ;