mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
9ac9fe2761
* MxRegion structures
* MxRegion structures
* Remove junk
* Refactor
* WIP
* Use MxRect32 ctor
* Refactor
* Add MxSize32, match MxRegion ctor
* Add two template annotations
* Fix missing instructions
* Fix another bug
* Refactor
* Add GetPoint
* Implement/match MxRegionTopBottom::MxRegionTopBottom
* Implement/match more functions
* More implementation
* Don't expose internal match
* Fix indent
* Add template annotations
* Implement remaining functions
* Fix comment
* Match loops
* Simplify function
* Merge
* Remove junk
* Format
* Format
* match MxRegion::vtable1c
* revert vtable1c match-hack
This reverts commit 7b88625988
.
---------
Co-authored-by: Ramen2X <64166386+Ramen2X@users.noreply.github.com>
19 lines
396 B
C++
19 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;
|
|
}
|