From 2434427c1ce885ef95556c2a87194a6d7757c6e1 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sun, 4 Feb 2024 12:23:54 -0500 Subject: [PATCH] Move functions --- LEGO1/lego/legoomni/include/legoomni.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/LEGO1/lego/legoomni/include/legoomni.h b/LEGO1/lego/legoomni/include/legoomni.h index 8e787b28..0d31d48b 100644 --- a/LEGO1/lego/legoomni/include/legoomni.h +++ b/LEGO1/lego/legoomni/include/legoomni.h @@ -69,12 +69,6 @@ class LegoOmni : public MxOmni { c_clearScreen = 0x04 }; - void CreateBackgroundAudio(); - void RemoveWorld(const MxAtomId&, MxLong); - static MxS32 GetCurrPathInfo(LegoPathBoundary**, MxS32&); - static void CreateInstance(); - static LegoOmni* GetInstance(); - LegoOmni(); ~LegoOmni() override; // vtable+00 @@ -108,6 +102,12 @@ class LegoOmni : public MxOmni { void AddWorld(LegoWorld* p_world); void DeleteWorld(LegoWorld* p_world); void FUN_1005b4f0(MxBool p_disable, MxU16 p_flags); + void CreateBackgroundAudio(); + void RemoveWorld(const MxAtomId&, MxLong); + + static MxS32 GetCurrPathInfo(LegoPathBoundary**, MxS32&); + static void CreateInstance(); + static LegoOmni* GetInstance(); LegoVideoManager* GetVideoManager() { return (LegoVideoManager*) m_videoManager; } LegoSoundManager* GetSoundManager() { return (LegoSoundManager*) m_soundManager; }