Files
ZHGD_Web/SelfPackages/XCharts/Runtime/Internal/Misc/IUpdateRuntimeData.cs

11 lines
204 B
C#
Raw Normal View History

2025-07-13 23:16:20 +08:00
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
namespace XCharts.Runtime
{
public interface IUpdateRuntimeData
{
void UpdateRuntimeData(BaseChart chart);
}
}