2023-10-31 11:30:13 -04:00
|
|
|
#ifndef MXREGIONLIST_H
|
|
|
|
#define MXREGIONLIST_H
|
|
|
|
|
|
|
|
#include "mxlist.h"
|
|
|
|
|
|
|
|
struct MxRegionTopBottom;
|
|
|
|
struct MxRegionLeftRight;
|
|
|
|
|
2023-11-19 07:23:30 -05:00
|
|
|
// VTABLE 0x100dcb10 TEMPLATE
|
|
|
|
// class MxCollection<MxRegionTopBottom *>
|
2023-10-31 11:30:13 -04:00
|
|
|
|
2023-11-19 07:23:30 -05:00
|
|
|
// VTABLE 0x100dcb28 TEMPLATE
|
|
|
|
// class MxList<MxRegionTopBottom *>
|
|
|
|
|
|
|
|
// VTABLE 0x100dcb40 TEMPLATE
|
|
|
|
// class MxPtrList<MxRegionTopBottom>
|
2023-10-31 11:30:13 -04:00
|
|
|
|
|
|
|
// VTABLE 0x100dcb58
|
|
|
|
// SIZE 0x18
|
2023-11-19 07:23:30 -05:00
|
|
|
class MxRegionList : public MxPtrList<MxRegionTopBottom> {
|
|
|
|
public:
|
|
|
|
MxRegionList() : MxPtrList<MxRegionTopBottom>(Destroy) {}
|
|
|
|
static void Destroy(MxRegionTopBottom*);
|
|
|
|
};
|
2023-10-31 11:30:13 -04:00
|
|
|
|
|
|
|
// VTABLE 0x100dcb88
|
|
|
|
typedef MxListCursorChildChild<MxRegionTopBottom*> MxRegionListCursor;
|
|
|
|
|
2023-11-19 07:23:30 -05:00
|
|
|
// VTABLE 0x100dcc10
|
|
|
|
typedef MxListCursorChildChild<MxRegionLeftRight*> MxRegionLeftRightListCursor;
|
2023-10-31 11:30:13 -04:00
|
|
|
|
2023-11-19 07:23:30 -05:00
|
|
|
// VTABLE 0x100dcc40 TEMPLATE
|
|
|
|
// class MxCollection<MxRegionLeftRight *>
|
2023-10-31 11:30:13 -04:00
|
|
|
|
2023-11-19 07:23:30 -05:00
|
|
|
// VTABLE 0x100dcc58 TEMPLATE
|
|
|
|
// class MxList<MxRegionLeftRight *>
|
2023-10-31 11:30:13 -04:00
|
|
|
|
2023-11-19 07:23:30 -05:00
|
|
|
// VTABLE 0x100dcc70 TEMPLATE
|
|
|
|
// class MxPtrList<MxRegionLeftRight>
|
2023-10-31 11:30:13 -04:00
|
|
|
|
|
|
|
// VTABLE 0x100dcc88
|
|
|
|
// SIZE 0x18
|
2023-11-19 07:23:30 -05:00
|
|
|
class MxRegionLeftRightList : public MxPtrList<MxRegionLeftRight> {
|
|
|
|
public:
|
|
|
|
MxRegionLeftRightList() : MxPtrList<MxRegionLeftRight>(Destroy) {}
|
|
|
|
static void Destroy(MxRegionLeftRight*);
|
|
|
|
};
|
2023-10-31 11:30:13 -04:00
|
|
|
|
|
|
|
#endif // MXREGIONLIST_H
|