mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
b7efd64ac1
* reccmp: Add ability to compare template instantiations * Add example of template instantiation comparison. * merge * Add template compare annotations for MxList instances * Bootstrap MxDSSelectAction, generalize MxList * Fix template annotations * Fix merge error * Fix merge error --------- Co-authored-by: Brendan Dougherty <brandougherty1@gmail.com>
17 lines
344 B
C++
17 lines
344 B
C++
#include "mxdsselectaction.h"
|
|
|
|
DECOMP_SIZE_ASSERT(MxDSSelectAction, 0xb0)
|
|
|
|
// OFFSET: LEGO1 0x100cb2b0
|
|
MxDSSelectAction::MxDSSelectAction()
|
|
{
|
|
this->SetType(MxDSType_SelectAction);
|
|
this->m_unk0xac = new MxStringList;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100cb8d0
|
|
MxDSSelectAction::~MxDSSelectAction()
|
|
{
|
|
if (this->m_unk0xac)
|
|
delete this->m_unk0xac;
|
|
}
|