2023-06-29 04:10:08 -04:00
|
|
|
#ifndef HOSPITALSTATE_H
|
|
|
|
#define HOSPITALSTATE_H
|
|
|
|
|
2023-12-27 13:36:32 -05:00
|
|
|
#include "decomp.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "legostate.h"
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d97a0
|
2023-06-29 04:10:08 -04:00
|
|
|
// SIZE 0x18
|
2023-10-24 19:38:27 -04:00
|
|
|
class HospitalState : public LegoState {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
HospitalState();
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10076400
|
2023-10-24 19:38:27 -04:00
|
|
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x100f0480
|
2023-10-24 19:38:27 -04:00
|
|
|
return "HospitalState";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10076410
|
2023-12-13 05:48:14 -05:00
|
|
|
inline virtual MxBool IsA(const char* p_name) const override // vtable+0x10
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return !strcmp(p_name, HospitalState::ClassName()) || LegoState::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-12-27 13:36:32 -05:00
|
|
|
|
2024-01-24 12:12:57 -05:00
|
|
|
virtual MxResult VTable0x1c(LegoFile* p_legoFile) override; // vtable+0x1c
|
2024-01-20 18:04:46 -05:00
|
|
|
|
2024-01-18 08:34:14 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x100764c0
|
|
|
|
// HospitalState::`scalar deleting destructor'
|
|
|
|
|
2023-12-27 13:36:32 -05:00
|
|
|
private:
|
|
|
|
undefined m_unk0x8[4]; // 0x8
|
|
|
|
undefined2 m_unk0xc; // 0xc
|
|
|
|
undefined2 m_unk0xe; // 0xe
|
|
|
|
undefined2 m_unk0x10; // 0x10
|
|
|
|
undefined2 m_unk0x12; // 0x12
|
|
|
|
undefined2 m_unk0x14; // 0x14
|
|
|
|
undefined2 m_unk0x16; // 0x16
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HOSPITALSTATE_H
|