#pragma once #include "Block.h" class cBlockEntityHandler : public cBlockHandler { public: cBlockEntityHandler(BLOCKTYPE a_BlockID); virtual void OnClick(cWorld *a_World, cPlayer *a_Player, int a_X, int a_Y, int a_Z); virtual bool IsUseable() { return true; } };