Update mxdsobject.h

This commit is contained in:
Christian Semmler 2023-06-29 10:16:28 +02:00 committed by GitHub
parent 0ffe6ed4ae
commit c76683a557
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,10 +18,10 @@ class MxDSObject : public MxCore
void CopyFrom(MxDSObject &p_dsObject);
// OFFSET: LEGO1 0x100bf730
inline virtual const char *ClassName() const { return "MxDSObject"; }; // vtable+0c
inline virtual const char *ClassName() const override { return "MxDSObject"; }; // vtable+0c
// OFFSET: LEGO1 0x100bf740
inline virtual MxBool IsA(const char *name) const { return !strcmp(name, MxDSObject::ClassName()) || MxCore::IsA(name); }; // vtable+10;
inline virtual MxBool IsA(const char *name) const override { return !strcmp(name, MxDSObject::ClassName()) || MxCore::IsA(name); }; // vtable+10;
virtual int unk14(); // vtable+14;
virtual unsigned int CalculateUnk08(); // vtable+18;