mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-28 02:44:18 +00:00
Reorganize sources and files (#414)
* Reorganize sources * Refactor * Remove relative paths * Renames * Fix gitignore * Remove stuff * Try fixing format script * Fix format * Fix format * Fix naming script * Test format * Fix format
This commit is contained in:
committed by
GitHub
parent
6a85e62406
commit
c47206617d
41
LEGO1/omni/src/action/mxdsstill.cpp
Normal file
41
LEGO1/omni/src/action/mxdsstill.cpp
Normal file
@@ -0,0 +1,41 @@
|
||||
#include "mxdsstill.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(MxDSStill, 0xb8)
|
||||
|
||||
// FUNCTION: LEGO1 0x100c98c0
|
||||
MxDSStill::MxDSStill()
|
||||
{
|
||||
this->SetType(MxDSType_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;
|
||||
}
|
||||
Reference in New Issue
Block a user