summaryrefslogtreecommitdiff
path: root/src/KingSystem/Physics/System/physSystem.h
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2022-12-20 19:22:02 +0100
committerLéo Lam <leo@leolam.fr>2022-12-20 19:23:54 +0100
commit27ef71eff72e1ca889f786f226c9fbd93540e724 (patch)
tree8343c4faa63c937b30e458c7c7ce24c9f0e9dce5 /src/KingSystem/Physics/System/physSystem.h
parentd1d4bf3c2947ec20a650d3e18825e8a85df81a63 (diff)
ksys/phys: Rename RagdollController to RagdollInstance
RagdollController is a different thing!
Diffstat (limited to 'src/KingSystem/Physics/System/physSystem.h')
-rw-r--r--src/KingSystem/Physics/System/physSystem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/KingSystem/Physics/System/physSystem.h b/src/KingSystem/Physics/System/physSystem.h
index 436e4727..a8c94b0b 100644
--- a/src/KingSystem/Physics/System/physSystem.h
+++ b/src/KingSystem/Physics/System/physSystem.h
@@ -20,7 +20,7 @@ class GroupFilter;
class LayerContactPointInfo;
class MaterialTable;
class RayCastForRequest;
-class RagdollControllerMgr;
+class RagdollInstanceMgr;
class RigidBody;
class RigidBodyRequestMgr;
class StaticCompoundMgr;
@@ -47,7 +47,7 @@ public:
ContactMgr* getContactMgr() const { return mContactMgr; }
StaticCompoundMgr* getStaticCompoundMgr() const { return mStaticCompoundMgr; }
RigidBodyRequestMgr* getRigidBodyRequestMgr() const { return mRigidBodyRequestMgr; }
- RagdollControllerMgr* getRagdollControllerMgr() const { return mRagdollControllerMgr; }
+ RagdollInstanceMgr* getRagdollInstanceMgr() const { return mRagdollInstanceMgr; }
SystemData* getSystemData() const { return mSystemData; }
MaterialTable* getMaterialTable() const { return mMaterialTable; }
@@ -151,7 +151,7 @@ private:
void* _150;
StaticCompoundMgr* mStaticCompoundMgr;
RigidBodyRequestMgr* mRigidBodyRequestMgr;
- RagdollControllerMgr* mRagdollControllerMgr;
+ RagdollInstanceMgr* mRagdollInstanceMgr;
void* mRigidBodyDividedMeshShapeMgr;
SystemData* mSystemData;
MaterialTable* mMaterialTable;