diff options
| author | Léo Lam <leo@leolam.fr> | 2021-04-20 23:16:53 +0200 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2021-04-21 13:02:00 +0200 |
| commit | f9d6eedc9f8128ba0765a6b01da9e2fbb4a25341 (patch) | |
| tree | 7a049ed1e87a5d1473d34d14af8164217a6c1d3d /src/KingSystem/Physics/SupportBone/physSupportBoneParam.cpp | |
| parent | 63472349c75cfe9ed8d2424b40bd935683bdba31 (diff) | |
ksys/phys: Start adding physics parameter structs
* SupportBoneParam
* RagdollParam
* ClothSetParam, ClothSubWindParam, ClothParam
* EdgeRigidBodySetParam, EdgeRigidBody
* ParamSet (only the header for now)
Diffstat (limited to 'src/KingSystem/Physics/SupportBone/physSupportBoneParam.cpp')
| -rw-r--r-- | src/KingSystem/Physics/SupportBone/physSupportBoneParam.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/KingSystem/Physics/SupportBone/physSupportBoneParam.cpp b/src/KingSystem/Physics/SupportBone/physSupportBoneParam.cpp new file mode 100644 index 00000000..736191dd --- /dev/null +++ b/src/KingSystem/Physics/SupportBone/physSupportBoneParam.cpp @@ -0,0 +1,9 @@ +#include "KingSystem/Physics/SupportBone/physSupportBoneParam.h" + +namespace ksys::phys { + +SupportBoneParam::SupportBoneParam() + : support_bone_setup_file_path(sead::SafeString::cEmptyString, "support_bone_setup_file_path", + "補助骨セットアップファイル(.psb)", this) {} + +} // namespace ksys::phys |
