mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-24 09:50:15 +00:00
12 lines
182 B
C#
12 lines
182 B
C#
|
|
|
||
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.EventSystems;
|
||
|
|
using UnityEngine.UI;
|
||
|
|
|
||
|
|
namespace XCharts
|
||
|
|
{
|
||
|
|
public interface ISerieExtraComponent
|
||
|
|
{
|
||
|
|
bool show { get; set; }
|
||
|
|
}
|
||
|
|
}
|