mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-03-25 20:05:37 -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;
|
|
}
|
|
} |