mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-20 06:41:15 +00:00
* Implement misc.lib * Lowercase files * Minor changes * Fix file cases * Fixes * Fix missing dtor * Add override * Match LegoImage::Read * Fix delete call --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
22 lines
372 B
C++
22 lines
372 B
C++
#include "hospitalstate.h"
|
|
|
|
DECOMP_SIZE_ASSERT(HospitalState, 0x18)
|
|
|
|
// FUNCTION: LEGO1 0x10076370
|
|
HospitalState::HospitalState()
|
|
{
|
|
this->m_unk0xc = 0;
|
|
this->m_unk0xe = 0;
|
|
this->m_unk0x10 = 0;
|
|
this->m_unk0x12 = 0;
|
|
this->m_unk0x14 = 0;
|
|
this->m_unk0x16 = 0;
|
|
}
|
|
|
|
// STUB: LEGO1 0x10076530
|
|
MxResult HospitalState::VTable0x1c(LegoFile* p_legoFile)
|
|
{
|
|
// TODO
|
|
return 0;
|
|
}
|