2023-06-29 04:10:08 -04:00
|
|
|
#ifndef MXDSCHUNK_H
|
|
|
|
#define MXDSCHUNK_H
|
|
|
|
|
|
|
|
#include "mxcore.h"
|
2023-07-16 02:51:11 -04:00
|
|
|
#include "mxtypes.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-07-16 02:51:11 -04:00
|
|
|
// VTABLE 0x100dc7f8
|
2023-06-29 04:10:08 -04:00
|
|
|
class MxDSChunk : public MxCore
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MxDSChunk();
|
|
|
|
virtual ~MxDSChunk() override;
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100be0c0
|
|
|
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
|
|
|
{
|
|
|
|
// 0x10101e6c
|
|
|
|
return "MxDSChunk";
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100be0d0
|
|
|
|
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
|
|
|
{
|
|
|
|
return !strcmp(name, MxDSChunk::ClassName()) || MxCore::IsA(name);
|
|
|
|
}
|
2023-07-16 02:51:11 -04:00
|
|
|
private:
|
|
|
|
MxS16 m_length; // 0x8
|
|
|
|
MxLong m_buffer; // 0xc
|
2023-10-13 17:36:16 -04:00
|
|
|
MxLong m_unk10; // 0x10
|
|
|
|
MxLong m_unk14; // 0x14
|
|
|
|
void* m_unk18; // 0x18
|
|
|
|
void* m_unk1c; // 0x1c
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXDSCHUNK_H
|