mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
749c553325
* LegoEntity parse action string * Reduced size assert for MxEntity * remove override keyword for LegoEntity function * Move global strings to new define.cpp file
24 lines
486 B
C++
24 lines
486 B
C++
#include "mxentity.h"
|
|
|
|
// Size subject to change. It's not clear yet which members belong to
|
|
// MxEntity and which belong only the subclasses.
|
|
DECOMP_SIZE_ASSERT(MxEntity, 0x5c)
|
|
|
|
// OFFSET: LEGO1 0x1001d190
|
|
MxEntity::MxEntity()
|
|
{
|
|
this->m_mxEntityId = -1;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x1000c110
|
|
MxEntity::~MxEntity()
|
|
{
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10001070
|
|
MxResult MxEntity::SetEntityId(MxS32 p_id, const MxAtomId &p_atom)
|
|
{
|
|
this->m_mxEntityId = p_id;
|
|
this->m_atom = p_atom;
|
|
return SUCCESS;
|
|
}
|