mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-03-10 23:17:49 -04:00
22 lines
488 B
C++
22 lines
488 B
C++
#include "legovehiclebuildstate.h"
|
|
|
|
#include "decomp.h"
|
|
|
|
DECOMP_SIZE_ASSERT(LegoVehicleBuildState, 0x50)
|
|
|
|
// FUNCTION: LEGO1 0x10025f30
|
|
LegoVehicleBuildState::LegoVehicleBuildState(char* p_classType)
|
|
{
|
|
this->m_className = p_classType;
|
|
this->m_unk0x4c = 0;
|
|
this->m_unk0x4d = FALSE;
|
|
this->m_unk0x4e = FALSE;
|
|
this->m_placedPartCount = 0;
|
|
}
|
|
|
|
// STUB: LEGO1 0x10026120
|
|
MxResult LegoVehicleBuildState::Serialize(LegoFile* p_legoFile)
|
|
{
|
|
// TODO
|
|
return LegoState::Serialize(p_legoFile);
|
|
}
|