Introduce clang-format (#240)

This commit is contained in:
Christian Semmler
2023-10-24 19:38:27 -04:00
committed by GitHub
parent e928fc9425
commit b449da1fa3
408 changed files with 12434 additions and 12813 deletions

View File

@@ -5,7 +5,7 @@ DECOMP_SIZE_ASSERT(MxDSStill, 0xb8)
// OFFSET: LEGO1 0x100c98c0
MxDSStill::MxDSStill()
{
this->SetType(MxDSType_Still);
this->SetType(MxDSType_Still);
}
// OFFSET: LEGO1 0x100c9a70
@@ -14,28 +14,28 @@ MxDSStill::~MxDSStill()
}
// OFFSET: LEGO1 0x100c9ac0
void MxDSStill::CopyFrom(MxDSStill &p_dsStill)
void MxDSStill::CopyFrom(MxDSStill& p_dsStill)
{
}
// OFFSET: LEGO1 0x100c9ad0
MxDSStill &MxDSStill::operator=(MxDSStill &p_dsStill)
MxDSStill& MxDSStill::operator=(MxDSStill& p_dsStill)
{
if (this == &p_dsStill)
return *this;
if (this == &p_dsStill)
return *this;
MxDSMediaAction::operator=(p_dsStill);
this->CopyFrom(p_dsStill);
return *this;
MxDSMediaAction::operator=(p_dsStill);
this->CopyFrom(p_dsStill);
return *this;
}
// OFFSET: LEGO1 0x100c9b00
MxDSAction *MxDSStill::Clone()
MxDSAction* MxDSStill::Clone()
{
MxDSStill *clone = new MxDSStill();
MxDSStill* clone = new MxDSStill();
if (clone)
*clone = *this;
if (clone)
*clone = *this;
return clone;
return clone;
}