blob: 39fbe1bd925b4c4210188225a66c6b050b25ca87 (
plain) (
tree)
|
|
#pragma once
#include "BlockHandler.h"
#include "BlockEntity.h"
class cBlockFlowerPotHandler :
public cClearMetaOnDrop<cBlockEntityHandler>
{
public:
cBlockFlowerPotHandler(BLOCKTYPE a_BlockType) :
cClearMetaOnDrop<cBlockEntityHandler>(a_BlockType)
{
}
} ;
|