mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-22 15:51:16 +00:00
Cleanup
This commit is contained in:
parent
373cb87665
commit
f4a60af797
@ -12,9 +12,9 @@ MxEntity::~MxEntity()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x10001070
|
// 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;
|
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;
|
return FALSE;
|
||||||
}
|
}
|
||||||
@ -25,7 +25,7 @@ class MxEntity : public MxCore
|
|||||||
return !strcmp(name, MxEntity::ClassName()) || MxCore::IsA(name);
|
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:
|
private:
|
||||||
MxS32 m_mxEntityId; // 0x8
|
MxS32 m_mxEntityId; // 0x8
|
||||||
MxAtomId m_atom; // 0xc
|
MxAtomId m_atom; // 0xc
|
||||||
|
|||||||
@ -15,7 +15,4 @@ MxEventManager::~MxEventManager()
|
|||||||
// OFFSET: LEGO1 0x100c0450
|
// OFFSET: LEGO1 0x100c0450
|
||||||
void MxEventManager::Init()
|
void MxEventManager::Init()
|
||||||
{
|
{
|
||||||
// huh?
|
|
||||||
// imagine if the devs actually put this here to troll us
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user