2023-11-12 07:47:01 -05:00
|
|
|
#ifndef MXSTREAMCHUNKLIST_H
|
|
|
|
#define MXSTREAMCHUNKLIST_H
|
|
|
|
|
|
|
|
#include "decomp.h"
|
|
|
|
#include "mxlist.h"
|
|
|
|
|
|
|
|
class MxStreamChunk;
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dc5d0
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxCollection<MxStreamChunk *>
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dc5e8
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxList<MxStreamChunk *>
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dc600
|
2023-11-12 07:47:01 -05:00
|
|
|
// SIZE 0x18
|
|
|
|
class MxStreamChunkList : public MxList<MxStreamChunk*> {
|
|
|
|
public:
|
|
|
|
MxStreamChunkList() { m_customDestructor = Destroy; }
|
|
|
|
|
2023-11-19 07:23:30 -05:00
|
|
|
virtual MxS8 Compare(MxStreamChunk*, MxStreamChunk*) override; // vtable+0x14
|
2023-11-12 07:47:01 -05:00
|
|
|
|
|
|
|
static void Destroy(MxStreamChunk* p_chunk);
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef MxListCursorChild<MxStreamChunk*> MxStreamChunkListCursor;
|
|
|
|
|
|
|
|
#endif // MXSTREAMCHUNKLIST_H
|