暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ISerieExtraComponent.cs 189B

1234567891011
  1. using UnityEngine;
  2. using UnityEngine.EventSystems;
  3. using UnityEngine.UI;
  4. namespace XCharts.Runtime
  5. {
  6. public interface ISerieExtraComponent
  7. {
  8. bool show { get; set; }
  9. }
  10. }