From 5dc1ed789d6897644267ccf03499a68a6b1fb9d8 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sun, 18 Feb 2024 10:33:42 -0500 Subject: [PATCH] Fix order --- LEGO1/lego/sources/anim/legoanim.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/LEGO1/lego/sources/anim/legoanim.cpp b/LEGO1/lego/sources/anim/legoanim.cpp index 481954c0..78a3a7e8 100644 --- a/LEGO1/lego/sources/anim/legoanim.cpp +++ b/LEGO1/lego/sources/anim/legoanim.cpp @@ -67,19 +67,6 @@ LegoResult LegoScaleKey::Read(LegoStorage* p_storage) return SUCCESS; } -// FUNCTION: LEGO1 0x100a0f60 -LegoMorphKey::LegoMorphKey() -{ - m_name = NULL; -} - -// STUB: LEGO1 0x100a0f70 -LegoResult LegoMorphKey::Read(LegoStorage* p_storage) -{ - // TODO - return SUCCESS; -} - // STUB: LEGO1 0x1009fcf0 LegoAnimNodeData::LegoAnimNodeData() { @@ -232,3 +219,16 @@ LegoResult LegoAnim::Write(LegoStorage* p_storage) // TODO return SUCCESS; } + +// FUNCTION: LEGO1 0x100a0f60 +LegoMorphKey::LegoMorphKey() +{ + m_name = NULL; +} + +// STUB: LEGO1 0x100a0f70 +LegoResult LegoMorphKey::Read(LegoStorage* p_storage) +{ + // TODO + return SUCCESS; +}