summaryrefslogblamecommitdiffstats
path: root/source/blocks/BlockEntity.h
blob: bfc3241d3726c764b3598209fdc95e0fa5669289 (plain) (tree)
1
2
3
4
5
6
7
8
9
 
             
 


                   


 


                                                 



                                                 
         
                                                                                                                   
          
                                                                                 
          
         
                                          


                             




   

#pragma once

#include "Block.h"





class cBlockEntityHandler : public cBlockHandler
{
public:
	cBlockEntityHandler(BLOCKTYPE a_BlockID)
		: cBlockHandler(a_BlockID)
	{
	}
	
	virtual void OnUse(cWorld * a_World, cPlayer *a_Player, int a_BlockX, int a_BlockY, int a_BlockZ) override
	{
		a_World->UseBlockEntity(a_Player, a_BlockX, a_BlockY, a_BlockZ);
	}
	
	virtual bool IsUseable() override
	{
		return true;
	}
};