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
|
#pragma once
|
||||||
|
|
||||||
|
#include "KingSystem/Physics/physDefines.h"
|
||||||
|
|
||||||
namespace ksys::phys {
|
namespace ksys::phys {
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
class RagdollController {
|
class RagdollController {
|
||||||
public:
|
public:
|
||||||
void update();
|
void update();
|
||||||
|
|
||||||
|
u32 sub_7101221CC4();
|
||||||
|
void sub_7101221728(ContactLayer layer);
|
||||||
|
void sub_71012217A8();
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ksys::phys
|
} // namespace ksys::phys
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#include "KingSystem/Physics/System/physInstanceSet.h"
|
#include "KingSystem/Physics/System/physInstanceSet.h"
|
||||||
|
#include "KingSystem/Physics/Ragdoll/physRagdollController.h"
|
||||||
#include "KingSystem/Physics/RigidBody/physRigidBodySet.h"
|
#include "KingSystem/Physics/RigidBody/physRigidBodySet.h"
|
||||||
#include "KingSystem/Physics/System/physCollisionInfo.h"
|
#include "KingSystem/Physics/System/physCollisionInfo.h"
|
||||||
#include "KingSystem/Physics/System/physContactPointInfo.h"
|
#include "KingSystem/Physics/System/physContactPointInfo.h"
|
||||||
|
|
|
@ -21,18 +21,10 @@ namespace ksys::phys {
|
||||||
class CollisionInfo;
|
class CollisionInfo;
|
||||||
class ContactPointInfo;
|
class ContactPointInfo;
|
||||||
class ParamSet;
|
class ParamSet;
|
||||||
|
class RagdollController;
|
||||||
class RigidBodySet;
|
class RigidBodySet;
|
||||||
class SystemGroupHandler;
|
class SystemGroupHandler;
|
||||||
|
|
||||||
class Ragdoll {};
|
|
||||||
|
|
||||||
class RagdollController {
|
|
||||||
public:
|
|
||||||
u32 sub_7101221CC4();
|
|
||||||
void sub_7101221728(ContactLayer);
|
|
||||||
void sub_71012217A8();
|
|
||||||
};
|
|
||||||
|
|
||||||
class CollisionController {
|
class CollisionController {
|
||||||
public:
|
public:
|
||||||
void sub_7100F5EC30();
|
void sub_7100F5EC30();
|
||||||
|
|
Loading…
Reference in New Issue