diff options
| author | Léo Lam <leo@leolam.fr> | 2022-03-02 01:18:25 +0100 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2022-03-02 01:25:11 +0100 |
| commit | b2a66ca8586d435dc417d0d9aa65e6b445fe9855 (patch) | |
| tree | ef64560ad069e99e7773ab905671222b3b8ea163 /src/KingSystem/Physics/System/physSystem.h | |
| parent | 220cb534689303a2ef4df51a41b6142cfe9b7ee2 (diff) | |
ksys/phys: ContactPointInfoEx -> ContactLayerContactPointInfo
Turns out it's the equivalent to ContactLayerCollisionInfo.
Diffstat (limited to 'src/KingSystem/Physics/System/physSystem.h')
| -rw-r--r-- | src/KingSystem/Physics/System/physSystem.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/KingSystem/Physics/System/physSystem.h b/src/KingSystem/Physics/System/physSystem.h index 12339455..9ad2a173 100644 --- a/src/KingSystem/Physics/System/physSystem.h +++ b/src/KingSystem/Physics/System/physSystem.h @@ -16,7 +16,7 @@ class MaterialTable; class RigidBody; class RigidBodyRequestMgr; class ContactPointInfo; -class ContactPointInfoEx; +class LayerContactPointInfo; class SystemData; class SystemGroupHandler; @@ -47,16 +47,16 @@ public: int a, int b, int c) const; void freeContactPointInfo(ContactPointInfo* info) const; - ContactPointInfoEx* allocContactPointsEx(sead::Heap* heap, int num, int num2, - const sead::SafeString& name, int a, int b, - int c) const; - void freeContactPointInfoEx(ContactPointInfoEx* info) const; + LayerContactPointInfo* allocLayerContactPointInfo(sead::Heap* heap, int num, int num2, + const sead::SafeString& name, int a, int b, + int c) const; + void freeLayerContactPointInfo(LayerContactPointInfo* info) const; void registerContactPointInfo(ContactPointInfo* info) const; // 0x000000710121696c void registerCollisionInfo(CollisionInfo* info) const; // 0x0000007101216974 - void registerContactPointLayerPair(ContactPointInfoEx* info, ContactLayer layer1, + void registerContactPointLayerPair(LayerContactPointInfo* info, ContactLayer layer1, ContactLayer layer2, bool enabled); // 0x00000071012169a4 |
