mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-11 18:51:16 +00:00
* 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 608985cd73.
* Fix copy/paste error
* Remove stale comment.
---------
Co-authored-by: Christian Semmler <mail@csemmler.com>
55 lines
764 B
C++
55 lines
764 B
C++
#include "legoraceactor.h"
|
|
|
|
DECOMP_SIZE_ASSERT(LegoRaceActor, 0x180)
|
|
|
|
// STUB: LEGO1 0x10014190
|
|
void LegoRaceActor::VTable0x74(Matrix4& p_transform)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100145d0
|
|
LegoRaceActor::LegoRaceActor()
|
|
{
|
|
m_unk0x70 = 0;
|
|
m_unk0x08 = 0;
|
|
}
|
|
|
|
// STUB: LEGO1 0x10014ca0
|
|
void LegoRaceActor::ParseAction(char*)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x10014cb0
|
|
void LegoRaceActor::SetWorldSpeed(MxFloat p_worldSpeed)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x10014cc0
|
|
void LegoRaceActor::VTable0x68()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x10014cd0
|
|
void LegoRaceActor::VTable0x70(float p_float)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x10014ce0
|
|
MxS32 LegoRaceActor::VTable0x90()
|
|
{
|
|
// TODO
|
|
return 0;
|
|
}
|
|
|
|
// STUB: LEGO1 0x10014cf0
|
|
MxS32 LegoRaceActor::VTable0x94()
|
|
{
|
|
// TODO
|
|
return 0;
|
|
}
|