mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 08:41:16 +00:00
36 lines
782 B
C++
36 lines
782 B
C++
#ifndef MXREGIONLIST_H
|
|
#define MXREGIONLIST_H
|
|
|
|
#include "mxlist.h"
|
|
|
|
struct MxRegionTopBottom;
|
|
struct MxRegionLeftRight;
|
|
|
|
// VTABLE 0x100dcb40 TEMPLATE
|
|
// class MxPtrList<MxRegionTopBottom>
|
|
|
|
// VTABLE 0x100dcb58
|
|
// SIZE 0x18
|
|
class MxRegionList : public MxPtrList<MxRegionTopBottom> {
|
|
public:
|
|
static void Destroy(MxRegionTopBottom*);
|
|
};
|
|
|
|
// VTABLE 0x100dcb88
|
|
typedef MxListCursorChildChild<MxRegionTopBottom*> MxRegionListCursor;
|
|
|
|
// VTABLE 0x100dcc10
|
|
typedef MxListCursorChildChild<MxRegionLeftRight*> MxRegionLeftRightListCursor;
|
|
|
|
// VTABLE 0x100dcc70 TEMPLATE
|
|
// class MxPtrList<MxRegionLeftRight>
|
|
|
|
// VTABLE 0x100dcc88
|
|
// SIZE 0x18
|
|
class MxRegionLeftRightList : public MxPtrList<MxRegionLeftRight> {
|
|
public:
|
|
static void Destroy(MxRegionLeftRight*);
|
|
};
|
|
|
|
#endif // MXREGIONLIST_H
|