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>
26 lines
427 B
C++
26 lines
427 B
C++
#include "gasstationstate.h"
|
|
|
|
DECOMP_SIZE_ASSERT(GasStationState, 0x24)
|
|
|
|
// FUNCTION: LEGO1 0x10005eb0
|
|
GasStationState::GasStationState()
|
|
{
|
|
m_unk0x18 = 0;
|
|
m_unk0x1a = 0;
|
|
m_unk0x1c = 0;
|
|
m_unk0x1e = 0;
|
|
m_unk0x20 = 0;
|
|
|
|
undefined4* unk0x08 = m_unk0x08;
|
|
unk0x08[0] = -1;
|
|
unk0x08[1] = -1;
|
|
unk0x08[2] = -1;
|
|
}
|
|
|
|
// STUB: LEGO1 0x10006300
|
|
MxResult GasStationState::VTable0x1c(LegoFile* p_legoFile)
|
|
{
|
|
// TODO
|
|
return SUCCESS;
|
|
}
|