2023-10-16 09:22:21 -04:00
|
|
|
#include "legovehiclebuildstate.h"
|
|
|
|
|
|
|
|
#include "decomp.h"
|
|
|
|
|
2024-01-30 13:57:20 -05:00
|
|
|
DECOMP_SIZE_ASSERT(LegoVehicleBuildState, 0x50)
|
2023-11-21 03:44:45 -05:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10025f30
|
2023-10-16 09:22:21 -04:00
|
|
|
LegoVehicleBuildState::LegoVehicleBuildState(char* p_classType)
|
|
|
|
{
|
2023-10-24 19:38:27 -04:00
|
|
|
this->m_className = p_classType;
|
2023-12-13 05:48:14 -05:00
|
|
|
this->m_unk0x4c = 0;
|
|
|
|
this->m_unk0x4d = 0;
|
|
|
|
this->m_unk0x4e = 0;
|
2023-10-24 19:38:27 -04:00
|
|
|
this->m_placedPartCount = 0;
|
2023-10-16 09:22:21 -04:00
|
|
|
}
|
2024-01-20 18:04:46 -05:00
|
|
|
|
|
|
|
// STUB: LEGO1 0x10026120
|
2024-01-24 12:12:57 -05:00
|
|
|
MxResult LegoVehicleBuildState::VTable0x1c(LegoFile* p_legoFile)
|
2024-01-20 18:04:46 -05:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return SUCCESS;
|
|
|
|
}
|