mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-25 01:01:16 +00:00
* cmake+ci: run clang-tidy
* Remove DESCRIPTION from LEGO1/LegoOmni.mingw.def
* Add initial .clang-tidy and fixes
* fix file perms
* Comment out DESCRIPTION
* Remove LegoEntity::~LegoEntity and MxPresenter::~MxPresenter from mingw's LEGO1.def
* Looks like clang is allergic to the libs in the directx5 SDK
* Update .clang-tidy
* Fix typo in .clang-tidy
* Attempt to generate an action error
* Revert "Attempt to generate an action error"
This reverts commit 96c4c65fed.
* cmake: test with -Wparentheses + optionally with -Werror
* ci: -k0 is a Ninja argument
* Use -Werror only for msys2 builds
* cmake: only emit warnings for specific warnings
* cmake: and don't do -Werror/-WX anymore
* Fix warnings
* Fix mingw warnings
---------
Co-authored-by: Christian Semmler <mail@csemmler.com>
44 lines
798 B
C++
44 lines
798 B
C++
#include "mxdsobjectaction.h"
|
|
|
|
DECOMP_SIZE_ASSERT(MxDSObjectAction, 0xb8)
|
|
|
|
// FUNCTION: LEGO1 0x100c8870
|
|
MxDSObjectAction::MxDSObjectAction()
|
|
{
|
|
this->SetType(e_objectAction);
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c8a20
|
|
MxDSObjectAction::~MxDSObjectAction()
|
|
{
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c8a70
|
|
void MxDSObjectAction::CopyFrom(MxDSObjectAction& p_dsObjectAction)
|
|
{
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c8a80
|
|
MxDSObjectAction& MxDSObjectAction::operator=(MxDSObjectAction& p_dsObjectAction)
|
|
{
|
|
if (this == &p_dsObjectAction) {
|
|
return *this;
|
|
}
|
|
|
|
MxDSMediaAction::operator=(p_dsObjectAction);
|
|
this->CopyFrom(p_dsObjectAction);
|
|
return *this;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c8ab0
|
|
MxDSAction* MxDSObjectAction::Clone()
|
|
{
|
|
MxDSObjectAction* clone = new MxDSObjectAction();
|
|
|
|
if (clone) {
|
|
*clone = *this;
|
|
}
|
|
|
|
return clone;
|
|
}
|