BlockEntities: Support cloning self.
This commit is contained in:
@@ -25,7 +25,7 @@ enum ENUM_NOTE_INSTRUMENTS
|
||||
class cNoteEntity :
|
||||
public cBlockEntity
|
||||
{
|
||||
typedef cBlockEntity super;
|
||||
typedef cBlockEntity Super;
|
||||
public:
|
||||
|
||||
// tolua_end
|
||||
@@ -33,7 +33,7 @@ public:
|
||||
BLOCKENTITY_PROTODEF(cNoteEntity)
|
||||
|
||||
/** Creates a new note entity. a_World may be nullptr */
|
||||
cNoteEntity(int a_X, int a_Y, int a_Z, cWorld * a_World);
|
||||
cNoteEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World);
|
||||
virtual ~cNoteEntity() override {}
|
||||
|
||||
// tolua_begin
|
||||
@@ -45,6 +45,8 @@ public:
|
||||
|
||||
// tolua_end
|
||||
|
||||
// cBlockEntity overrides:
|
||||
virtual void CopyFrom(const cBlockEntity & a_Src) override;
|
||||
virtual bool UsedBy(cPlayer * a_Player) override;
|
||||
virtual void SendTo(cClientHandle &) override {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user