More progress in the BuildingEntity ctor, make m_mxEntityId public

This commit is contained in:
Joshua Peisach 2023-10-07 13:12:06 -04:00
parent d29285ad78
commit 7655659374
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
2 changed files with 8 additions and 1 deletions

View File

@ -5,6 +5,11 @@
// OFFSET: LEGO1 0x10014e20
BuildingEntity::BuildingEntity()
{
// this->m_vec1.m_data = this->m_vec1.storage;
// this->m_vec2.m_data = this->m_vec2.storage;
// this->m_vec3.m_data = this->m_vec3.storage;
this->m_mxEntityId = -1;
Reset();
NotificationManager()->Register(this);
}

View File

@ -28,8 +28,10 @@ class MxEntity : public MxCore
}
virtual MxResult SetEntityId(MxS32 p_id, const MxAtomId &p_atom); // vtable+0x14
private:
public:
MxS32 m_mxEntityId; // 0x8
protected:
MxAtomId m_atom; // 0xc
};