2023-06-29 04:10:08 -04:00
|
|
|
#include "racecar.h"
|
|
|
|
|
2024-01-26 12:13:09 -05:00
|
|
|
#include "legocontrolmanager.h"
|
2024-03-09 15:07:52 -05:00
|
|
|
#include "misc.h"
|
2024-01-26 12:13:09 -05:00
|
|
|
|
2024-03-22 21:30:58 -04:00
|
|
|
DECOMP_SIZE_ASSERT(RaceCar, 0x164)
|
2023-09-10 08:01:39 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10028200
|
2023-06-29 04:10:08 -04:00
|
|
|
RaceCar::RaceCar()
|
|
|
|
{
|
2024-01-26 12:13:09 -05:00
|
|
|
m_unk0x13c = 40.0;
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
|
|
|
|
2024-01-26 12:13:09 -05:00
|
|
|
// FUNCTION: LEGO1 0x10028420
|
2023-06-29 04:10:08 -04:00
|
|
|
RaceCar::~RaceCar()
|
|
|
|
{
|
2024-01-26 12:13:09 -05:00
|
|
|
ControlManager()->Unregister(this);
|
|
|
|
VTable0xe4();
|
2023-06-29 04:10:08 -04:00
|
|
|
}
|
2024-01-20 18:04:46 -05:00
|
|
|
|
|
|
|
// STUB: LEGO1 0x10028490
|
|
|
|
MxResult RaceCar::Create(MxDSAction& p_dsAction)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// STUB: LEGO1 0x100284d0
|
2024-05-30 09:54:24 -04:00
|
|
|
MxU32 RaceCar::HandleClick()
|
2024-01-20 18:04:46 -05:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return 0;
|
|
|
|
}
|