This commit is contained in:
Joshua Peisach 2023-08-03 16:57:25 -04:00
parent 373cb87665
commit f4a60af797
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
3 changed files with 3 additions and 6 deletions

View File

@ -12,9 +12,9 @@ MxEntity::~MxEntity()
}
// OFFSET: LEGO1 0x10001070
MxResult MxEntity::SetEntityId(MxS32 p_id, MxAtomId *p_atom)
MxResult MxEntity::SetEntityId(MxS32 p_id, const MxAtomId &p_atom)
{
this->m_mxEntityId = p_id;
// FIXME: MxAtomId operator call, probably it will be return whatever the comparison is for comparing this->m_atom to the p_atom
this->m_atom = p_atom;
return FALSE;
}

View File

@ -25,7 +25,7 @@ class MxEntity : public MxCore
return !strcmp(name, MxEntity::ClassName()) || MxCore::IsA(name);
}
virtual MxResult MxEntity::SetEntityId(MxS32 p_id, MxAtomId *p_atom);
virtual MxResult SetEntityId(MxS32 p_id, const MxAtomId &p_atom); // vtable+0x14
private:
MxS32 m_mxEntityId; // 0x8
MxAtomId m_atom; // 0xc

View File

@ -15,7 +15,4 @@ MxEventManager::~MxEventManager()
// OFFSET: LEGO1 0x100c0450
void MxEventManager::Init()
{
// huh?
// imagine if the devs actually put this here to troll us
return;
}