13 lines
269 B
C#
13 lines
269 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace XCharts.Runtime
|
||
|
{
|
||
|
public struct AnimationStyleContext
|
||
|
{
|
||
|
public AnimationType type;
|
||
|
public float currentPathDistance;
|
||
|
public bool isAllItemAnimationEnd;
|
||
|
}
|
||
|
}
|