2023-06-29 04:10:08 -04:00
|
|
|
#include "mxdsanim.h"
|
|
|
|
|
2023-08-16 19:38:26 -04:00
|
|
|
DECOMP_SIZE_ASSERT(MxDSAnim, 0xb8)
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
// OFFSET: LEGO1 0x100c8ff0
|
|
|
|
MxDSAnim::MxDSAnim()
|
|
|
|
{
|
2023-07-03 13:24:51 -04:00
|
|
|
this->SetType(MxDSType_Anim);
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100c91a0
|
|
|
|
MxDSAnim::~MxDSAnim()
|
|
|
|
{
|
|
|
|
}
|
2023-08-16 19:38:26 -04:00
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100c91f0
|
|
|
|
void MxDSAnim::CopyFrom(MxDSAnim &p_dsAnim)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100c9200
|
|
|
|
MxDSAnim &MxDSAnim::operator=(MxDSAnim &p_dsAnim)
|
|
|
|
{
|
|
|
|
if (this == &p_dsAnim)
|
|
|
|
return *this;
|
|
|
|
|
|
|
|
MxDSMediaAction::operator=(p_dsAnim);
|
|
|
|
this->CopyFrom(p_dsAnim);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100c9230
|
|
|
|
MxDSAction *MxDSAnim::Clone()
|
|
|
|
{
|
|
|
|
MxDSAnim *clone = new MxDSAnim();
|
|
|
|
|
|
|
|
if (clone)
|
|
|
|
*clone = *this;
|
|
|
|
|
|
|
|
return clone;
|
|
|
|
}
|