This commit is contained in:
Christian Semmler 2024-12-07 11:45:05 -07:00
parent 8506e76242
commit 479febddf0

View File

@ -8,6 +8,24 @@
class Helicopter; class Helicopter;
// SIZE 0x0c
struct Act3ListElement {
undefined4 m_unk0x00[3]; // 0x00
int operator==(Act3ListElement) const { return 0; }
int operator<(Act3ListElement) const { return 0; }
};
// SIZE 0x10
class Act3List {
public:
Act3List() { m_unk0x04 = 0; }
private:
list<Act3ListElement> m_unk0x00; // 0x00
undefined4 m_unk0x04; // 0x0c
};
// VTABLE: LEGO1 0x100d4fc8 // VTABLE: LEGO1 0x100d4fc8
// SIZE 0x0c // SIZE 0x0c
class Act3State : public LegoState { class Act3State : public LegoState {
@ -40,24 +58,6 @@ class Act3State : public LegoState {
undefined4 m_unk0x08; // 0x08 undefined4 m_unk0x08; // 0x08
}; };
// SIZE 0x0c
struct Act3ListElement {
undefined4 m_unk0x00[3]; // 0x00
int operator==(Act3ListElement) const { return 0; }
int operator<(Act3ListElement) const { return 0; }
};
// SIZE 0x10
class Act3List {
public:
Act3List() { m_unk0x04 = 0; }
private:
list<Act3ListElement> m_unk0x00; // 0x00
undefined4 m_unk0x04; // 0x0c
};
// VTABLE: LEGO1 0x100d9628 // VTABLE: LEGO1 0x100d9628
// SIZE 0x4274 // SIZE 0x4274
class Act3 : public LegoWorld { class Act3 : public LegoWorld {