mirror of https://github.com/zeldaret/botw.git
ksys/phys: Move RigidBodyRequestMgr to its own header
This commit is contained in:
parent
2a8dc8ad25
commit
99b913f86d
|
@ -29,6 +29,8 @@ target_sources(uking PRIVATE
|
|||
RigidBody/physRigidBodyMotionProxy.h
|
||||
RigidBody/physRigidBodyParam.cpp
|
||||
RigidBody/physRigidBodyParam.h
|
||||
RigidBody/physRigidBodyRequestMgr.cpp
|
||||
RigidBody/physRigidBodyRequestMgr.h
|
||||
RigidBody/physRigidBodyResource.cpp
|
||||
RigidBody/physRigidBodyResource.h
|
||||
RigidBody/physRigidBodySetParam.cpp
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#include "KingSystem/Physics/RigidBody/physRigidBodyMotion.h"
|
||||
#include "KingSystem/Physics/RigidBody/physRigidBodyMotionProxy.h"
|
||||
#include "KingSystem/Physics/RigidBody/physRigidBodyParam.h"
|
||||
#include "KingSystem/Physics/RigidBody/physRigidBodyRequestMgr.h"
|
||||
#include "KingSystem/Physics/System/physMemSystem.h"
|
||||
#include "KingSystem/Physics/physConversions.h"
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
#include "KingSystem/Physics/RigidBody/physRigidBodyRequestMgr.h"
|
|
@ -0,0 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
namespace ksys::phys {
|
||||
|
||||
class RigidBody;
|
||||
|
||||
class RigidBodyRequestMgr {
|
||||
public:
|
||||
void sub_7100FA6C8C(bool, RigidBody*);
|
||||
};
|
||||
|
||||
} // namespace ksys::phys
|
|
@ -13,16 +13,12 @@ class ContactMgr;
|
|||
class GroupFilter;
|
||||
class MaterialTable;
|
||||
class RigidBody;
|
||||
class RigidBodyRequestMgr;
|
||||
class RigidContactPoints;
|
||||
class RigidContactPointsEx;
|
||||
class SystemData;
|
||||
class SystemGroupHandler;
|
||||
|
||||
// FIXME: obviously incomplete. Also this should be moved to its own header
|
||||
struct RigidBodyRequestMgr {
|
||||
void sub_7100FA6C8C(bool, RigidBody*);
|
||||
};
|
||||
|
||||
enum class IsIndoorStage {
|
||||
No,
|
||||
Yes,
|
||||
|
|
Loading…
Reference in New Issue