mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-07-20 01:01:58 -05:00
12 lines
260 B
C#
12 lines
260 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace UniVRM10.FastSpringBones.System
|
|
{
|
|
[Serializable]
|
|
public struct FastSpringBoneSpring
|
|
{
|
|
public FastSpringBoneJoint[] Joints;
|
|
public FastSpringBoneCollider[] Colliders;
|
|
}
|
|
} |