mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 13:30:10 +00:00
12 lines
253 B
C#
12 lines
253 B
C#
|
|
using UnityEngine;
|
|
using UnityEngine.EventSystems;
|
|
using UnityEngine.UI;
|
|
|
|
namespace XCharts.Runtime
|
|
{
|
|
public interface IUpdateRuntimeData
|
|
{
|
|
void UpdateRuntimeData(float chartX, float chartY, float chartWidth, float chartHeight);
|
|
}
|
|
} |