mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-12 05:24:14 -05:00
11 lines
184 B
C#
11 lines
184 B
C#
using System;
|
|
|
|
namespace UniVRM10.FastSpringBones.Blittables
|
|
{
|
|
[Serializable]
|
|
public struct BlittableSpan
|
|
{
|
|
public int startIndex;
|
|
public int count;
|
|
}
|
|
} |