summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockFlowerPot.h
blob: 39fbe1bd925b4c4210188225a66c6b050b25ca87 (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

#pragma once

#include "BlockHandler.h"
#include "BlockEntity.h"





class cBlockFlowerPotHandler :
	public cClearMetaOnDrop<cBlockEntityHandler>
{
public:
	cBlockFlowerPotHandler(BLOCKTYPE a_BlockType) :
		cClearMetaOnDrop<cBlockEntityHandler>(a_BlockType)
	{
	}
} ;