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-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c8ff0
|
2023-06-29 04:10:08 -04:00
|
|
|
MxDSAnim::MxDSAnim()
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
this->SetType(MxDSType_Anim);
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c91a0
|
2023-06-29 04:10:08 -04:00
|
|
|
MxDSAnim::~MxDSAnim()
|
|
|
|
{
|
|
|
|
}
|
2023-08-16 19:38:26 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c91f0
|
2023-10-24 19:38:27 -04:00
|
|
|
void MxDSAnim::CopyFrom(MxDSAnim& p_dsAnim)
|
2023-08-16 19:38:26 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c9200
|
2023-10-24 19:38:27 -04:00
|
|
|
MxDSAnim& MxDSAnim::operator=(MxDSAnim& p_dsAnim)
|
2023-08-16 19:38:26 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
if (this == &p_dsAnim)
|
|
|
|
return *this;
|
2023-08-16 19:38:26 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
MxDSMediaAction::operator=(p_dsAnim);
|
|
|
|
this->CopyFrom(p_dsAnim);
|
|
|
|
return *this;
|
2023-08-16 19:38:26 -04:00
|
|
|
}
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100c9230
|
2023-10-24 19:38:27 -04:00
|
|
|
MxDSAction* MxDSAnim::Clone()
|
2023-08-16 19:38:26 -04:00
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
MxDSAnim* clone = new MxDSAnim();
|
2023-08-16 19:38:26 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
if (clone)
|
|
|
|
*clone = *this;
|
2023-08-16 19:38:26 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
return clone;
|
2023-10-25 14:51:59 -04:00
|
|
|
}
|