improve match

This commit is contained in:
Misha 2023-12-16 11:43:42 -05:00
parent 97965eb439
commit 663acd1968
No known key found for this signature in database
GPG Key ID: 8441D12AEF33FED8
2 changed files with 18 additions and 8 deletions

View File

@ -66,6 +66,11 @@ class MxStartActionNotificationParam : public MxActionNotificationParam {
{
}
// FUNCTION: LEGO1 0x100b04a0
inline virtual ~MxStartActionNotificationParam() override
{
}
virtual MxNotificationParam* Clone() override; // vtable+0x4
};
@ -96,6 +101,11 @@ class MxType4NotificationParam : public MxActionNotificationParam {
m_unk0x14 = p_unk0x14;
}
// FUNCTION: LEGO1 0x100b0630
inline virtual ~MxType4NotificationParam() override
{
}
virtual MxNotificationParam* Clone() override; // vtable+0x4
private:

View File

@ -50,14 +50,14 @@ class MxDSObject : public MxCore {
inline void ClearAtom() { m_atomId.Clear(); }
private:
MxU32 m_sizeOnDisk; // 0x8
MxU16 m_type; // 0xc
char* m_sourceName; // 0x10
undefined4 m_unk0x14; // 0x14
char* m_objectName; // 0x18
MxU32 m_objectId; // 0x1c
MxAtomId m_atomId; // 0x20
MxS16 m_unk0x24; // 0x24
MxU32 m_sizeOnDisk; // 0x8
MxU16 m_type; // 0xc
char* m_sourceName; // 0x10
undefined4 m_unk0x14; // 0x14
char* m_objectName; // 0x18
MxU32 m_objectId; // 0x1c
MxAtomId m_atomId; // 0x20
MxS16 m_unk0x24; // 0x24
MxPresenter* m_unk0x28; // 0x28
};