blob: 00816d900bd650b176738b90859a424607d1bcff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <hostio/seadHostIONode.h>
#include <utility/aglParameter.h>
#include <utility/aglParameterObj.h>
namespace ksys::phys {
struct SupportBoneParam : agl::utl::ParameterObj, sead::hostio::Node {
SupportBoneParam();
agl::utl::Parameter<sead::SafeString> support_bone_setup_file_path;
};
} // namespace ksys::phys
|