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; }
|
||
|
}
|
||
|
}
|