From 97965eb4391985387e661d840bae9fe4ade72b68 Mon Sep 17 00:00:00 2001 From: Misha <106913236+MishaProductions@users.noreply.github.com> Date: Sat, 16 Dec 2023 11:38:51 -0500 Subject: [PATCH] Update mxdsobject.h --- LEGO1/mxdsobject.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/LEGO1/mxdsobject.h b/LEGO1/mxdsobject.h index 1a398af0..cce6b641 100644 --- a/LEGO1/mxdsobject.h +++ b/LEGO1/mxdsobject.h @@ -6,6 +6,8 @@ #include "mxcore.h" #include "mxdstypes.h" +class MxPresenter; + // VTABLE: LEGO1 0x100dc868 // SIZE 0x2c class MxDSObject : public MxCore { @@ -38,12 +40,12 @@ class MxDSObject : public MxCore { inline MxU32 GetObjectId() { return this->m_objectId; } inline const MxAtomId& GetAtomId() { return this->m_atomId; } inline MxS16 GetUnknown24() { return this->m_unk0x24; } - inline undefined4 GetUnknown28() { return this->m_unk0x28; } + inline MxPresenter* GetUnknown28() { return this->m_unk0x28; } inline void SetType(MxDSType p_type) { this->m_type = p_type; } inline void SetObjectId(MxU32 p_objectId) { this->m_objectId = p_objectId; } inline void SetUnknown24(MxS16 p_unk0x24) { this->m_unk0x24 = p_unk0x24; } - inline void SetUnknown28(undefined4 p_unk0x28) { this->m_unk0x28 = p_unk0x28; } + inline void SetUnknown28(MxPresenter* p_unk0x28) { this->m_unk0x28 = p_unk0x28; } inline void ClearAtom() { m_atomId.Clear(); } @@ -56,7 +58,7 @@ class MxDSObject : public MxCore { MxU32 m_objectId; // 0x1c MxAtomId m_atomId; // 0x20 MxS16 m_unk0x24; // 0x24 - undefined4 m_unk0x28; // 0x28 + MxPresenter* m_unk0x28; // 0x28 }; MxDSObject* DeserializeDSObjectDispatch(char**, MxS16);