mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-12-20 21:02:28 -05:00
fca8f74bd8
* Fix size annotations for legoomni Fix structure and add placeholder annotations for LegoAnimActor and subclasses * Fix LegoCarRaceActor constructor Fix function name in LegoRaceCar * Add size assertions for legoomni and fix sizes * Various style fixes * Use other marker so vtable.py doesn't compare * Revert "Use other marker so vtable.py doesn't compare" This reverts commit 608985cd73856598b95c15aed9f8f022645e9e7a. * Fix copy/paste error * Remove stale comment. --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
50 lines
687 B
C++
50 lines
687 B
C++
#include "jetski.h"
|
|
|
|
DECOMP_SIZE_ASSERT(Jetski, 0x164)
|
|
|
|
// FUNCTION: LEGO1 0x1007e3b0
|
|
Jetski::Jetski()
|
|
{
|
|
this->m_unk0x13c = 25.0;
|
|
this->m_unk0x150 = 2.0;
|
|
this->m_unk0x148 = 1;
|
|
}
|
|
|
|
// STUB: LEGO1 0x1007e630
|
|
MxResult Jetski::Create(MxDSAction& p_dsAction)
|
|
{
|
|
// TODO
|
|
return SUCCESS;
|
|
}
|
|
|
|
// STUB: LEGO1 0x1007e680
|
|
void Jetski::VTable0x70(float p_float)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x1007e6f0
|
|
void Jetski::VTable0xe4()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x1007e750
|
|
MxU32 Jetski::VTable0xcc()
|
|
{
|
|
// TODO
|
|
return 0;
|
|
}
|
|
|
|
// STUB: LEGO1 0x1007e8e0
|
|
MxU32 Jetski::VTable0xd4(LegoControlManagerEvent& p_param)
|
|
{
|
|
// TODO
|
|
return 0;
|
|
}
|
|
|
|
// STUB: LEGO1 0x1007e990
|
|
void Jetski::FUN_1007e990()
|
|
{
|
|
// TODO
|
|
}
|