diff options
| author | Léo Lam <leo@leolam.fr> | 2022-03-01 18:52:50 +0100 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2022-03-01 19:12:29 +0100 |
| commit | 1ee012858c2c1f348e9ede0b26f36ffc0e1fa8b3 (patch) | |
| tree | 227b55f2fe20cf0bc07f71091d779b7055978140 /src/KingSystem/Physics/System/physSystem.cpp | |
| parent | 18d0c5329327c5d0841e6c446f6453e6c3850ece (diff) | |
ksys: Rename RigidContactPoints to match param files
Diffstat (limited to 'src/KingSystem/Physics/System/physSystem.cpp')
| -rw-r--r-- | src/KingSystem/Physics/System/physSystem.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/KingSystem/Physics/System/physSystem.cpp b/src/KingSystem/Physics/System/physSystem.cpp index ad87f567..0ef11465 100644 --- a/src/KingSystem/Physics/System/physSystem.cpp +++ b/src/KingSystem/Physics/System/physSystem.cpp @@ -7,9 +7,9 @@ #include "KingSystem/Physics/StaticCompound/physStaticCompound.h" #include "KingSystem/Physics/SupportBone/physSupportBoneResource.h" #include "KingSystem/Physics/System/physContactMgr.h" +#include "KingSystem/Physics/System/physContactPointInfo.h" #include "KingSystem/Physics/System/physEntityGroupFilter.h" #include "KingSystem/Physics/System/physMaterialTable.h" -#include "KingSystem/Physics/System/physRigidContactPoints.h" #include "KingSystem/Physics/System/physSensorGroupFilter.h" #include "KingSystem/Physics/System/physSystemData.h" #include "KingSystem/Resource/resEntryFactory.h" @@ -47,24 +47,24 @@ void System::initSystemData(sead::Heap* heap) { mContactMgr); } -RigidContactPoints* System::allocContactPoints(sead::Heap* heap, int num, - const sead::SafeString& name, int a, int b, - int c) const { +ContactPointInfo* System::allocContactPointInfo(sead::Heap* heap, int num, + const sead::SafeString& name, int a, int b, + int c) const { return mContactMgr->allocContactPoints(heap, num, name, a, b, c); } -void System::freeContactPoints(RigidContactPoints* points) const { - mContactMgr->freeContactPoints(points); +void System::freeContactPointInfo(ContactPointInfo* info) const { + mContactMgr->freeContactPointInfo(info); } -RigidContactPointsEx* System::allocContactPointsEx(sead::Heap* heap, int num, int num2, - const sead::SafeString& name, int a, int b, - int c) const { +ContactPointInfoEx* System::allocContactPointsEx(sead::Heap* heap, int num, int num2, + const sead::SafeString& name, int a, int b, + int c) const { return mContactMgr->allocContactPointsEx(heap, num, num2, name, a, b, c); } -void System::registerContactPoints(RigidContactPoints* points) const { - mContactMgr->registerContactPoints(points); +void System::registerContactPointInfo(ContactPointInfo* info) const { + mContactMgr->registerContactPointInfo(info); } } // namespace ksys::phys |
