mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-28 02:44:18 +00:00
Refactor files based on beta debug build (#645)
* Rename LegoUnkSaveDataWriter -> LegoCharacterManager * Refactor mxomni into mxomni/mxmisc * Refactor legoomni into legoomni/misc * Resolve deps * Refactor atom * Refactor mxutil * Refactor mxio * Rename/relocate files * Fix format
This commit is contained in:
committed by
GitHub
parent
c62469fef4
commit
8069923651
33
LEGO1/lego/legoomni/src/actors/racecar.cpp
Normal file
33
LEGO1/lego/legoomni/src/actors/racecar.cpp
Normal file
@@ -0,0 +1,33 @@
|
||||
#include "racecar.h"
|
||||
|
||||
#include "legocontrolmanager.h"
|
||||
#include "misc.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(RaceCar, 0x164);
|
||||
|
||||
// FUNCTION: LEGO1 0x10028200
|
||||
RaceCar::RaceCar()
|
||||
{
|
||||
m_unk0x13c = 40.0;
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x10028420
|
||||
RaceCar::~RaceCar()
|
||||
{
|
||||
ControlManager()->Unregister(this);
|
||||
VTable0xe4();
|
||||
}
|
||||
|
||||
// STUB: LEGO1 0x10028490
|
||||
MxResult RaceCar::Create(MxDSAction& p_dsAction)
|
||||
{
|
||||
// TODO
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
// STUB: LEGO1 0x100284d0
|
||||
MxU32 RaceCar::VTable0xcc()
|
||||
{
|
||||
// TODO
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user