Files
XCharts/Runtime/Component/Animation/AnimationStyleContext.cs
2022-01-05 21:40:48 +08:00

14 lines
266 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
namespace XCharts
{
public struct AnimationStyleContext
{
public AnimationType type;
internal float currentPathDistance;
internal bool isAllItemAnimationEnd;
}
}