Aimbot-ParallelEnv/Assets/XCharts/Runtime/Internal/Misc/IUpdateRuntimeData.cs

11 lines
252 B
C#
Raw Normal View History

2022-10-25 19:07:39 +00:00
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
namespace XCharts.Runtime
{
public interface IUpdateRuntimeData
{
void UpdateRuntimeData(float chartX, float chartY, float chartWidth, float chartHeight);
}
}