mirror of https://github.com/zeldaret/botw.git
ksys/phys: Merge duplicate definitions of RagdollController
This commit is contained in:
parent
301ad689ab
commit
f1398cd0b1
|
@ -1,11 +1,17 @@
|
|||
#pragma once
|
||||
|
||||
#include "KingSystem/Physics/physDefines.h"
|
||||
|
||||
namespace ksys::phys {
|
||||
|
||||
// TODO
|
||||
class RagdollController {
|
||||
public:
|
||||
void update();
|
||||
|
||||
u32 sub_7101221CC4();
|
||||
void sub_7101221728(ContactLayer layer);
|
||||
void sub_71012217A8();
|
||||
};
|
||||
|
||||
} // namespace ksys::phys
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#include "KingSystem/Physics/System/physInstanceSet.h"
|
||||
#include "KingSystem/Physics/Ragdoll/physRagdollController.h"
|
||||
#include "KingSystem/Physics/RigidBody/physRigidBodySet.h"
|
||||
#include "KingSystem/Physics/System/physCollisionInfo.h"
|
||||
#include "KingSystem/Physics/System/physContactPointInfo.h"
|
||||
|
|
|
@ -21,18 +21,10 @@ namespace ksys::phys {
|
|||
class CollisionInfo;
|
||||
class ContactPointInfo;
|
||||
class ParamSet;
|
||||
class RagdollController;
|
||||
class RigidBodySet;
|
||||
class SystemGroupHandler;
|
||||
|
||||
class Ragdoll {};
|
||||
|
||||
class RagdollController {
|
||||
public:
|
||||
u32 sub_7101221CC4();
|
||||
void sub_7101221728(ContactLayer);
|
||||
void sub_71012217A8();
|
||||
};
|
||||
|
||||
class CollisionController {
|
||||
public:
|
||||
void sub_7100F5EC30();
|
||||
|
|
Loading…
Reference in New Issue