mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 08:41:16 +00:00
20 lines
388 B
C++
20 lines
388 B
C++
#include "mxregionlist.h"
|
|
|
|
#include "mxregion.h"
|
|
|
|
// FUNCTION: LEGO1 0x100c33e0
|
|
void MxRegionList::Destroy(MxRegionTopBottom* p_topBottom)
|
|
{
|
|
if (p_topBottom) {
|
|
if (p_topBottom->m_leftRightList)
|
|
delete p_topBottom->m_leftRightList;
|
|
delete p_topBottom;
|
|
}
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c4e80
|
|
void MxRegionLeftRightList::Destroy(MxRegionLeftRight* p_leftRight)
|
|
{
|
|
delete p_leftRight;
|
|
}
|