2023-06-29 04:10:08 -04:00
|
|
|
#include "mxentity.h"
|
|
|
|
|
2023-09-27 15:16:46 -04:00
|
|
|
// 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)
|
2023-08-03 14:10:54 -04:00
|
|
|
|
2023-07-16 02:49:47 -04:00
|
|
|
// OFFSET: LEGO1 0x1001d190
|
2023-06-29 04:10:08 -04:00
|
|
|
MxEntity::MxEntity()
|
|
|
|
{
|
2023-07-16 02:49:47 -04:00
|
|
|
this->m_mxEntityId = -1;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2023-07-16 02:49:47 -04:00
|
|
|
// OFFSET: LEGO1 0x1000c110
|
2023-06-29 04:10:08 -04:00
|
|
|
MxEntity::~MxEntity()
|
|
|
|
{
|
2023-08-03 14:10:54 -04:00
|
|
|
}
|
2023-08-03 19:43:36 -04:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|