mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 05:10:12 +00:00
13 lines
253 B
C#
13 lines
253 B
C#
using System.Text;
|
|
using UnityEngine;
|
|
using UnityEngine.EventSystems;
|
|
using UnityEngine.UI;
|
|
|
|
namespace XCharts.Runtime
|
|
{
|
|
public interface INeedSerieContainer
|
|
{
|
|
int containerIndex { get; }
|
|
int containterInstanceId { get; }
|
|
}
|
|
} |