From 686e152ede4b8752feac7c445bc5cbba55db5890 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sun, 2 Jul 2023 14:36:17 +0200 Subject: [PATCH] re-type members --- LEGO1/mxdsobject.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/LEGO1/mxdsobject.h b/LEGO1/mxdsobject.h index e07b0ec4..6cea396f 100644 --- a/LEGO1/mxdsobject.h +++ b/LEGO1/mxdsobject.h @@ -1,6 +1,8 @@ #ifndef MXDSOBJECT_H #define MXDSOBJECT_H +#include "decomp.h" + #include "mxcore.h" #include "mxatomid.h" #include "mxdstypes.h" @@ -43,16 +45,15 @@ class MxDSObject : public MxCore inline void SetType(MxDSType p_type) { this->m_type = p_type; } private: - unsigned int m_unk08; - MxS16 m_type; + undefined4 m_unk08; + MxU16 m_type; char* m_sourceName; - int m_unk14; + undefined4 m_unk14; char *m_objectName; - int m_unk1c; + undefined4 m_unk1c; MxAtomId m_atomId; MxS16 m_unk24; - MxU16 m_unk26; - int m_unk28; + undefined4 m_unk28; }; #endif // MXDSOBJECT_H