isle/LEGO1/omni/src/action/mxdsstill.cpp
MS 446caa4ca1
Beta matching MxDSObject/MxDSAction (#878)
* Beta matching MxDSObject/MxDSAction

* MxDSAction copy constructor

* A bit more refactor

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
2024-05-03 14:01:27 +02:00

45 lines
689 B
C++

#include "mxdsstill.h"
DECOMP_SIZE_ASSERT(MxDSStill, 0xb8)
// FUNCTION: LEGO1 0x100c98c0
// FUNCTION: BETA10 0x1015d54f
MxDSStill::MxDSStill()
{
this->SetType(e_still);
}
// FUNCTION: LEGO1 0x100c9a70
MxDSStill::~MxDSStill()
{
}
// FUNCTION: LEGO1 0x100c9ac0
void MxDSStill::CopyFrom(MxDSStill& p_dsStill)
{
}
// FUNCTION: LEGO1 0x100c9ad0
MxDSStill& MxDSStill::operator=(MxDSStill& p_dsStill)
{
if (this == &p_dsStill) {
return *this;
}
MxDSMediaAction::operator=(p_dsStill);
this->CopyFrom(p_dsStill);
return *this;
}
// FUNCTION: LEGO1 0x100c9b00
MxDSAction* MxDSStill::Clone()
{
MxDSStill* clone = new MxDSStill();
if (clone) {
*clone = *this;
}
return clone;
}