IUpdateRuntimeData.cs 204 B

1234567891011
  1. using UnityEngine;
  2. using UnityEngine.EventSystems;
  3. using UnityEngine.UI;
  4. namespace XCharts.Runtime
  5. {
  6. public interface IUpdateRuntimeData
  7. {
  8. void UpdateRuntimeData(BaseChart chart);
  9. }
  10. }