mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-23 16:21:15 +00:00
More progress in the BuildingEntity ctor, make m_mxEntityId public
This commit is contained in:
parent
d29285ad78
commit
7655659374
@ -5,6 +5,11 @@
|
|||||||
// OFFSET: LEGO1 0x10014e20
|
// OFFSET: LEGO1 0x10014e20
|
||||||
BuildingEntity::BuildingEntity()
|
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);
|
NotificationManager()->Register(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -28,8 +28,10 @@ class MxEntity : public MxCore
|
|||||||
}
|
}
|
||||||
|
|
||||||
virtual MxResult SetEntityId(MxS32 p_id, const MxAtomId &p_atom); // vtable+0x14
|
virtual MxResult SetEntityId(MxS32 p_id, const MxAtomId &p_atom); // vtable+0x14
|
||||||
private:
|
public:
|
||||||
MxS32 m_mxEntityId; // 0x8
|
MxS32 m_mxEntityId; // 0x8
|
||||||
|
|
||||||
|
protected:
|
||||||
MxAtomId m_atom; // 0xc
|
MxAtomId m_atom; // 0xc
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user