mirror of
https://github.com/isledecomp/isle.git
synced 2024-12-18 20:12:24 -05:00
33 lines
474 B
C++
33 lines
474 B
C++
#include "racecar.h"
|
|
|
|
#include "legocontrolmanager.h"
|
|
#include "misc.h"
|
|
|
|
DECOMP_SIZE_ASSERT(RaceCar, 0x164)
|
|
|
|
// FUNCTION: LEGO1 0x10028200
|
|
RaceCar::RaceCar()
|
|
{
|
|
m_maxLinearVel = 40.0;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x10028420
|
|
RaceCar::~RaceCar()
|
|
{
|
|
ControlManager()->Unregister(this);
|
|
Exit();
|
|
}
|
|
|
|
// STUB: LEGO1 0x10028490
|
|
MxResult RaceCar::Create(MxDSAction& p_dsAction)
|
|
{
|
|
// TODO
|
|
return SUCCESS;
|
|
}
|
|
|
|
// STUB: LEGO1 0x100284d0
|
|
MxLong RaceCar::HandleClick()
|
|
{
|
|
// TODO
|
|
return 0;
|
|
}
|