NG_/Assets/XCharts/Runtime/Internal/Misc/INeedSerieContainer.cs

13 lines
253 B
C#
Raw Normal View History

2024-12-13 19:40:05 +08:00
using System.Text;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
namespace XCharts.Runtime
{
public interface INeedSerieContainer
{
int containerIndex { get; }
int containterInstanceId { get; }
}
}