blob: abdaa7615e046a70efde51eacdb4c7d7987949fa (
plain) (
tree)
|
|
#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;
}
};
|