11 lines
252 B
C#
11 lines
252 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);
|
|
}
|
|
} |