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



                         
                        





                              
                                  


                                                       
                                                


         


                                                                                          





         

#pragma once

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





class cBlockFlowerPotHandler :
	public cBlockEntityHandler
{
public:
	cBlockFlowerPotHandler(BLOCKTYPE a_BlockType) :
		cBlockEntityHandler(a_BlockType)
	{
	}

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