mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
12 lines
176 B
C++
12 lines
176 B
C++
|
#include "mxparam.h"
|
||
|
|
||
|
#include "decomp.h"
|
||
|
|
||
|
DECOMP_SIZE_ASSERT(MxParam, 0xc);
|
||
|
|
||
|
// OFFSET: LEGO1 0x10010390
|
||
|
MxParam* MxParam::Clone()
|
||
|
{
|
||
|
return new MxParam(m_type, m_sender);
|
||
|
}
|