mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-20 06: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 96c4c65fedbc4102837f4bcbbb9ee83a7d14cba3. * 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>
58 lines
918 B
C++
58 lines
918 B
C++
#include "islepathactor.h"
|
|
|
|
DECOMP_SIZE_ASSERT(IslePathActor, 0x160)
|
|
|
|
// FUNCTION: LEGO1 0x1001a200
|
|
IslePathActor::IslePathActor()
|
|
{
|
|
this->m_world = NULL;
|
|
this->m_unk0x13c = 6.0;
|
|
this->m_unk0x15c = 1.0;
|
|
this->m_unk0x158 = 0;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x1001a280
|
|
MxResult IslePathActor::Create(MxDSAction& p_dsAction)
|
|
{
|
|
return MxEntity::Create(p_dsAction);
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x1001a2a0
|
|
void IslePathActor::Destroy(MxBool p_fromDestructor)
|
|
{
|
|
if (!p_fromDestructor) {
|
|
LegoPathActor::Destroy(FALSE);
|
|
}
|
|
}
|
|
|
|
// STUB: LEGO1 0x1001a2c0
|
|
MxLong IslePathActor::Notify(MxParam& p_param)
|
|
{
|
|
// TODO
|
|
return 0;
|
|
}
|
|
|
|
// STUB: LEGO1 0x1001a350
|
|
void IslePathActor::VTable0xe0()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x1001a3f0
|
|
void IslePathActor::VTable0xe4()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x1001b2a0
|
|
void IslePathActor::VTable0xe8(MxU32, MxBool, MxU8)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x1001b5b0
|
|
void IslePathActor::VTable0xec()
|
|
{
|
|
// TODO
|
|
}
|