isle/LEGO1/mxstreamchunk.h
2023-11-09 08:15:41 -05:00

26 lines
536 B
C++

#ifndef MXSTREAMCHUNK_H
#define MXSTREAMCHUNK_H
#include "mxdschunk.h"
// VTABLE 0x100dc2a8
// SIZE 0x20
class MxStreamChunk : public MxDSChunk {
// OFFSET: LEGO1 0x100b1fe0
inline virtual const char* ClassName() const override // vtable+0xc
{
// 0x10101e5c
return "MxStreamChunk";
}
// OFFSET: LEGO1 0x100b1ff0
inline virtual MxBool IsA(const char* name) const override // vtable+0x10
{
return !strcmp(name, MxStreamChunk::ClassName()) || MxDSChunk::IsA(name);
}
void* m_unk1c; // 0x1c
};
#endif // MXSTREAMCHUNK_H