isle-portable/LEGO1/mxdsanim.cpp

42 lines
625 B
C++
Raw Normal View History

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