Files
XCharts/Runtime/Internal/Misc/ISerieExtraComponent.cs

11 lines
189 B
C#
Raw Normal View History

2021-12-28 08:18:24 +08:00
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
2022-02-19 22:37:57 +08:00
namespace XCharts.Runtime
2021-12-28 08:18:24 +08:00
{
public interface ISerieExtraComponent
{
bool show { get; set; }
}
}