mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
19 lines
303 B
C++
19 lines
303 B
C++
#include "mxdschunk.h"
|
|
|
|
// OFFSET: LEGO1 0x100be050
|
|
MxDSChunk::MxDSChunk()
|
|
{
|
|
this->m_length = 0;
|
|
this->m_unk18 = NULL;
|
|
this->m_buffer = -1;
|
|
this->m_unk10 = 0;
|
|
this->m_unk14 = 0;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100be170
|
|
MxDSChunk::~MxDSChunk()
|
|
{
|
|
if ((this->m_length & 1) != 0) {
|
|
delete this->m_unk18;
|
|
}
|
|
}
|