2023-06-29 04:10:08 -04:00
|
|
|
#include "mxentity.h"
|
|
|
|
|
2023-10-01 09:06:29 -04:00
|
|
|
DECOMP_SIZE_ASSERT(MxEntity, 0x10)
|
2023-08-03 14:10:54 -04:00
|
|
|
|
2023-11-21 03:44:45 -05:00
|
|
|
// OFFSET: LEGO1 0x10001070
|
|
|
|
MxResult MxEntity::Create(MxS32 p_id, const MxAtomId& p_atom)
|
2023-06-29 04:10:08 -04:00
|
|
|
{
|
2023-11-21 03:44:45 -05:00
|
|
|
this->m_mxEntityId = p_id;
|
|
|
|
this->m_atom = p_atom;
|
|
|
|
return SUCCESS;
|
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
|
|
|
|
2023-11-21 03:44:45 -05:00
|
|
|
// OFFSET: LEGO1 0x1001d190
|
|
|
|
MxEntity::MxEntity()
|
2023-08-03 19:43:36 -04:00
|
|
|
{
|
2023-11-21 03:44:45 -05:00
|
|
|
this->m_mxEntityId = -1;
|
2023-08-03 19:43:36 -04:00
|
|
|
}
|