mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-12-12 09:01:07 -05:00
f50b771fff
* Push changes * fixes * Implement Infocenter::HandleEndAction * match Infocenter::StopCutScene * implement Infocenter::HandleKeyPress * fixes * Update infocenter.cpp * Update legoworld.cpp * use enums * WIP Fixes * Fix * Fix * Fix * Rename function * Change enum * Update enums * Refactor another enum * Refactor MxDSType * Refactor HashTableOpt * Fixes * Refactor tickle enum * Update other enums * Add EnumConstantName to ncc * Move enum to global namespace * Rename enum --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
41 lines
628 B
C++
41 lines
628 B
C++
#include "mxdsanim.h"
|
|
|
|
DECOMP_SIZE_ASSERT(MxDSAnim, 0xb8)
|
|
|
|
// FUNCTION: LEGO1 0x100c8ff0
|
|
MxDSAnim::MxDSAnim()
|
|
{
|
|
this->SetType(e_anim);
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c91a0
|
|
MxDSAnim::~MxDSAnim()
|
|
{
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c91f0
|
|
void MxDSAnim::CopyFrom(MxDSAnim& p_dsAnim)
|
|
{
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c9200
|
|
MxDSAnim& MxDSAnim::operator=(MxDSAnim& p_dsAnim)
|
|
{
|
|
if (this == &p_dsAnim)
|
|
return *this;
|
|
|
|
MxDSMediaAction::operator=(p_dsAnim);
|
|
this->CopyFrom(p_dsAnim);
|
|
return *this;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c9230
|
|
MxDSAction* MxDSAnim::Clone()
|
|
{
|
|
MxDSAnim* clone = new MxDSAnim();
|
|
|
|
if (clone)
|
|
*clone = *this;
|
|
|
|
return clone;
|
|
}
|