mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
20 lines
396 B
C++
20 lines
396 B
C++
|
#include "mxregionlist.h"
|
||
|
|
||
|
#include "mxregion.h"
|
||
|
|
||
|
// OFFSET: LEGO1 0x100c33e0
|
||
|
void MxRegionListParent::Destroy(MxRegionTopBottom* p_topBottom)
|
||
|
{
|
||
|
if (p_topBottom) {
|
||
|
if (p_topBottom->m_leftRightList)
|
||
|
delete p_topBottom->m_leftRightList;
|
||
|
delete p_topBottom;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// OFFSET: LEGO1 0x100c4e80
|
||
|
void MxRegionLeftRightListParent::Destroy(MxRegionLeftRight* p_leftRight)
|
||
|
{
|
||
|
delete p_leftRight;
|
||
|
}
|