From 479febddf0b1e9ebb58b451399a2a8e841b3fccd Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sat, 7 Dec 2024 11:45:05 -0700 Subject: [PATCH] Move --- LEGO1/lego/legoomni/include/act3.h | 36 +++++++++++++++--------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/LEGO1/lego/legoomni/include/act3.h b/LEGO1/lego/legoomni/include/act3.h index 984695dd..764dcdaf 100644 --- a/LEGO1/lego/legoomni/include/act3.h +++ b/LEGO1/lego/legoomni/include/act3.h @@ -8,6 +8,24 @@ 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 m_unk0x00; // 0x00 + undefined4 m_unk0x04; // 0x0c +}; + // VTABLE: LEGO1 0x100d4fc8 // SIZE 0x0c class Act3State : public LegoState { @@ -40,24 +58,6 @@ class Act3State : public LegoState { 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 m_unk0x00; // 0x00 - undefined4 m_unk0x04; // 0x0c -}; - // VTABLE: LEGO1 0x100d9628 // SIZE 0x4274 class Act3 : public LegoWorld {