BlockEntities: Support cloning self.
This commit is contained in:
@@ -9,10 +9,22 @@
|
||||
|
||||
|
||||
|
||||
cNoteEntity::cNoteEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World) :
|
||||
super(E_BLOCK_NOTE_BLOCK, a_BlockX, a_BlockY, a_BlockZ, a_World),
|
||||
cNoteEntity::cNoteEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World):
|
||||
Super(a_BlockType, a_BlockMeta, a_BlockX, a_BlockY, a_BlockZ, a_World),
|
||||
m_Pitch(0)
|
||||
{
|
||||
ASSERT(a_BlockType == E_BLOCK_NOTE_BLOCK);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void cNoteEntity::CopyFrom(const cBlockEntity & a_Src)
|
||||
{
|
||||
Super::CopyFrom(a_Src);
|
||||
auto & src = reinterpret_cast<const cNoteEntity &>(a_Src);
|
||||
m_Pitch = src.m_Pitch;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user