From 068fcfbecf827def11a14e446f8c7685ba2391ce Mon Sep 17 00:00:00 2001 From: Ramen2X Date: Wed, 13 Mar 2024 16:10:38 -0400 Subject: [PATCH] function order --- LEGO1/lego/legoomni/include/hospital.h | 2 +- LEGO1/lego/legoomni/src/worlds/hospital.cpp | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/LEGO1/lego/legoomni/include/hospital.h b/LEGO1/lego/legoomni/include/hospital.h index 3ca30ed8..fa428d62 100644 --- a/LEGO1/lego/legoomni/include/hospital.h +++ b/LEGO1/lego/legoomni/include/hospital.h @@ -40,8 +40,8 @@ class Hospital : public LegoWorld { // Hospital::`scalar deleting destructor' private: - MxLong HandleEndAction(MxEndActionNotificationParam& p_param); MxLong HandleKeyPress(MxS8 p_key); + MxLong HandleEndAction(MxEndActionNotificationParam& p_param); MxLong HandleButtonDown(LegoControlManagerEvent& p_param); MxLong HandleClick(LegoControlManagerEvent& p_param); diff --git a/LEGO1/lego/legoomni/src/worlds/hospital.cpp b/LEGO1/lego/legoomni/src/worlds/hospital.cpp index 2375cb02..ecb523f2 100644 --- a/LEGO1/lego/legoomni/src/worlds/hospital.cpp +++ b/LEGO1/lego/legoomni/src/worlds/hospital.cpp @@ -123,15 +123,15 @@ void Hospital::ReadyWorld() // TODO } -// STUB: LEGO1 0x10074e00 -MxLong Hospital::HandleEndAction(MxEndActionNotificationParam& p_param) +// STUB: LEGO1 0x10074dd0 +MxLong Hospital::HandleKeyPress(MxS8 p_key) { // TODO return 0; } -// STUB: LEGO1 0x10074dd0 -MxLong Hospital::HandleKeyPress(MxS8 p_key) +// STUB: LEGO1 0x10074e00 +MxLong Hospital::HandleEndAction(MxEndActionNotificationParam& p_param) { // TODO return 0;