mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 16:34:06 +00:00
Introduce clang-format (#240)
This commit is contained in:

committed by
GitHub

parent
e928fc9425
commit
b449da1fa3
@@ -5,7 +5,7 @@ DECOMP_SIZE_ASSERT(MxDSAnim, 0xb8)
|
||||
// OFFSET: LEGO1 0x100c8ff0
|
||||
MxDSAnim::MxDSAnim()
|
||||
{
|
||||
this->SetType(MxDSType_Anim);
|
||||
this->SetType(MxDSType_Anim);
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c91a0
|
||||
@@ -14,28 +14,28 @@ MxDSAnim::~MxDSAnim()
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c91f0
|
||||
void MxDSAnim::CopyFrom(MxDSAnim &p_dsAnim)
|
||||
void MxDSAnim::CopyFrom(MxDSAnim& p_dsAnim)
|
||||
{
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c9200
|
||||
MxDSAnim &MxDSAnim::operator=(MxDSAnim &p_dsAnim)
|
||||
MxDSAnim& MxDSAnim::operator=(MxDSAnim& p_dsAnim)
|
||||
{
|
||||
if (this == &p_dsAnim)
|
||||
return *this;
|
||||
if (this == &p_dsAnim)
|
||||
return *this;
|
||||
|
||||
MxDSMediaAction::operator=(p_dsAnim);
|
||||
this->CopyFrom(p_dsAnim);
|
||||
return *this;
|
||||
MxDSMediaAction::operator=(p_dsAnim);
|
||||
this->CopyFrom(p_dsAnim);
|
||||
return *this;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c9230
|
||||
MxDSAction *MxDSAnim::Clone()
|
||||
MxDSAction* MxDSAnim::Clone()
|
||||
{
|
||||
MxDSAnim *clone = new MxDSAnim();
|
||||
MxDSAnim* clone = new MxDSAnim();
|
||||
|
||||
if (clone)
|
||||
*clone = *this;
|
||||
if (clone)
|
||||
*clone = *this;
|
||||
|
||||
return clone;
|
||||
return clone;
|
||||
}
|
Reference in New Issue
Block a user