This commit is contained in:
Christian Semmler
2023-10-25 06:39:25 -04:00
parent a2a5cd1186
commit 14350660c8
2 changed files with 16 additions and 21 deletions

View File

@@ -1,4 +1,5 @@
#include "mxregionlist.h"
#include "mxregion.h"
// OFFSET: LEGO1 0x100c33e0

View File

@@ -8,14 +8,11 @@ struct MxRegionLeftRight;
// VTABLE 0x100dcb40
// SIZE 0x18
class MxRegionListParent : public MxList<MxRegionTopBottom*>
{
class MxRegionListParent : public MxList<MxRegionTopBottom*> {
public:
static void Destroy(MxRegionTopBottom* p_topBottom);
MxRegionListParent() {
m_customDestructor = Destroy;
}
MxRegionListParent() { m_customDestructor = Destroy; }
};
// VTABLE 0x100dcb58
@@ -33,14 +30,11 @@ typedef MxListCursorChildChild<MxRegionTopBottom*> MxRegionListCursor;
// VTABLE 0x100dcc70
// SIZE 0x18
class MxRegionLeftRightListParent : public MxList<MxRegionLeftRight*>
{
class MxRegionLeftRightListParent : public MxList<MxRegionLeftRight*> {
public:
static void Destroy(MxRegionLeftRight* p_leftRight);
MxRegionLeftRightListParent() {
m_customDestructor = Destroy;
}
MxRegionLeftRightListParent() { m_customDestructor = Destroy; }
};
// VTABLE 0x100dcc88