Stub MxEntity::Destroy for LegoState::Destroy

This commit is contained in:
Anonymous Maarten 2023-06-30 08:10:59 +02:00
parent d8e33c18bd
commit e2889f54e7
2 changed files with 8 additions and 0 deletions

View File

@ -11,3 +11,9 @@ MxEntity::~MxEntity()
{
// TODO
}
// OFFSET: LEGO1 0x10001070 STUB
void MxEntity::Destroy()
{
// TODO
}

View File

@ -23,6 +23,8 @@ class MxEntity : public MxCore
return !strcmp(name, MxEntity::ClassName()) || MxCore::IsA(name);
}
virtual void Destroy(); // vtable+0x1c
// 0x8: MxResult
// 0xc MxAtomId
};