diff --git a/src/KingSystem/Physics/CMakeLists.txt b/src/KingSystem/Physics/CMakeLists.txt index 5287bd4d..fa1eb647 100644 --- a/src/KingSystem/Physics/CMakeLists.txt +++ b/src/KingSystem/Physics/CMakeLists.txt @@ -6,6 +6,8 @@ target_sources(uking PRIVATE Ragdoll/physRagdollConfig.cpp Ragdoll/physRagdollConfig.h + Ragdoll/physRagdollControllerKeyList.h + Ragdoll/physRagdollControllerKeyList.cpp Ragdoll/physRagdollParam.cpp Ragdoll/physRagdollParam.h Ragdoll/physRagdollResource.cpp @@ -78,8 +80,6 @@ target_sources(uking PRIVATE System/physMemSystem.h System/physParamSet.cpp System/physParamSet.h - System/physRagdollControllerKeyList.h - System/physRagdollControllerKeyList.cpp System/physRigidContactPoints.cpp System/physRigidContactPoints.h System/physRigidContactPointsEx.cpp diff --git a/src/KingSystem/Physics/System/physRagdollControllerKeyList.cpp b/src/KingSystem/Physics/Ragdoll/physRagdollControllerKeyList.cpp similarity index 95% rename from src/KingSystem/Physics/System/physRagdollControllerKeyList.cpp rename to src/KingSystem/Physics/Ragdoll/physRagdollControllerKeyList.cpp index e714cd69..46273423 100644 --- a/src/KingSystem/Physics/System/physRagdollControllerKeyList.cpp +++ b/src/KingSystem/Physics/Ragdoll/physRagdollControllerKeyList.cpp @@ -1,4 +1,4 @@ -#include "KingSystem/Physics/System/physRagdollControllerKeyList.h" +#include "KingSystem/Physics/Ragdoll/physRagdollControllerKeyList.h" namespace ksys::phys { @@ -53,4 +53,4 @@ bool RagdollControllerKeyList::parse_(u8* data, size_t actualFileSize, sead::Hea return true; } -} // namespace ksys::phys \ No newline at end of file +} // namespace ksys::phys diff --git a/src/KingSystem/Physics/System/physRagdollControllerKeyList.h b/src/KingSystem/Physics/Ragdoll/physRagdollControllerKeyList.h similarity index 98% rename from src/KingSystem/Physics/System/physRagdollControllerKeyList.h rename to src/KingSystem/Physics/Ragdoll/physRagdollControllerKeyList.h index 685d0625..7b851bd0 100644 --- a/src/KingSystem/Physics/System/physRagdollControllerKeyList.h +++ b/src/KingSystem/Physics/Ragdoll/physRagdollControllerKeyList.h @@ -43,4 +43,4 @@ private: sead::Buffer buffer; }; -} // namespace ksys::phys \ No newline at end of file +} // namespace ksys::phys diff --git a/src/KingSystem/Physics/System/physSystemData.cpp b/src/KingSystem/Physics/System/physSystemData.cpp index 825edf69..71ff60ac 100644 --- a/src/KingSystem/Physics/System/physSystemData.cpp +++ b/src/KingSystem/Physics/System/physSystemData.cpp @@ -1,8 +1,8 @@ #include "KingSystem/Physics/System/physSystemData.h" +#include "KingSystem/Physics/Ragdoll/physRagdollControllerKeyList.h" #include "KingSystem/Physics/System/physContactMgr.h" #include "KingSystem/Physics/System/physGroupFilter.h" #include "KingSystem/Physics/System/physMaterialTable.h" -#include "KingSystem/Physics/System/physRagdollControllerKeyList.h" #include "KingSystem/Resource/resHandle.h" #include "KingSystem/Resource/resLoadRequest.h"