isle-portable/LEGO1/mxdsstill.cpp

41 lines
644 B
C++
Raw Normal View History

#include "mxdsstill.h"
DECOMP_SIZE_ASSERT(MxDSStill, 0xb8)
// OFFSET: LEGO1 0x100c98c0
MxDSStill::MxDSStill()
{
2023-10-24 19:38:27 -04:00
this->SetType(MxDSType_Still);
}
// OFFSET: LEGO1 0x100c9a70
MxDSStill::~MxDSStill()
{
}
// OFFSET: LEGO1 0x100c9ac0
2023-10-24 19:38:27 -04:00
void MxDSStill::CopyFrom(MxDSStill& p_dsStill)
{
}
// OFFSET: LEGO1 0x100c9ad0
2023-10-24 19:38:27 -04:00
MxDSStill& MxDSStill::operator=(MxDSStill& p_dsStill)
{
2023-10-24 19:38:27 -04:00
if (this == &p_dsStill)
return *this;
2023-10-24 19:38:27 -04:00
MxDSMediaAction::operator=(p_dsStill);
this->CopyFrom(p_dsStill);
return *this;
}
// OFFSET: LEGO1 0x100c9b00
2023-10-24 19:38:27 -04:00
MxDSAction* MxDSStill::Clone()
{
2023-10-24 19:38:27 -04:00
MxDSStill* clone = new MxDSStill();
2023-10-24 19:38:27 -04:00
if (clone)
*clone = *this;
2023-10-24 19:38:27 -04:00
return clone;
}