Fix annotation

This commit is contained in:
Christian Semmler 2024-11-03 10:59:21 -07:00
parent f3a45c636f
commit 9f47f6dad4
2 changed files with 3 additions and 3 deletions

View File

@ -101,9 +101,6 @@ class Act1State : public LegoState {
RaceCar* m_racecar; // 0x268 RaceCar* m_racecar; // 0x268
}; };
// FUNCTION: LEGO1 0x10033a70
// Act1State::LegoNamedPlane::~LegoNamedPlane
// VTABLE: LEGO1 0x100d6fb8 // VTABLE: LEGO1 0x100d6fb8
// SIZE 0x140 // SIZE 0x140
class Isle : public LegoWorld { class Isle : public LegoWorld {

View File

@ -11,6 +11,9 @@ class LegoNamedPlane {
// FUNCTION: LEGO1 0x10033800 // FUNCTION: LEGO1 0x10033800
LegoNamedPlane() {} LegoNamedPlane() {}
// FUNCTION: LEGO1 0x10033a70
// LegoNamedPlane::~LegoNamedPlane
void SetName(const char* p_name) { m_name = p_name; } void SetName(const char* p_name) { m_name = p_name; }
const MxString* GetName() const { return &m_name; } const MxString* GetName() const { return &m_name; }