isle-portable/LEGO1/lego/legoomni/src/actors/motorcycle.cpp
Christian Semmler bbc304ce46
Implement/match Ambulance::HandlePathStruct (#1029)
* Implement/match Ambulance::HandlePathStruct

* Add annotation
2024-06-13 20:10:19 +02:00

58 lines
863 B
C++

#include "motocycle.h"
DECOMP_SIZE_ASSERT(Motocycle, 0x16c)
// FUNCTION: LEGO1 0x100357b0
Motocycle::Motocycle()
{
this->m_maxLinearVel = 40.0;
this->m_unk0x150 = 1.75;
this->m_unk0x148 = 1;
this->m_unk0x164 = 1.0;
}
// STUB: LEGO1 0x10035a40
MxResult Motocycle::Create(MxDSAction& p_dsAction)
{
// TODO
return SUCCESS;
}
// STUB: LEGO1 0x10035ad0
void Motocycle::VTable0x70(float p_float)
{
// TODO
}
// STUB: LEGO1 0x10035bc0
void Motocycle::Exit()
{
// TODO
}
// STUB: LEGO1 0x10035c50
MxLong Motocycle::HandleClick()
{
// TODO
return 0;
}
// STUB: LEGO1 0x10035d70
MxLong Motocycle::HandleControl(LegoControlManagerEvent& p_param)
{
// TODO
return 0;
}
// STUB: LEGO1 0x10035df0
MxLong Motocycle::HandlePathStruct(LegoPathStructEvent& p_param)
{
// TODO
return 0;
}
// STUB: LEGO1 0x10035e10
void Motocycle::FUN_10035e10()
{
// TODO
}