summaryrefslogblamecommitdiffstats
path: root/source/blocks/BlockEntity.h
blob: 085b651585768f3749b706a17597d9e40cfd4b4e (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 OnClick(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;
	}
};