No Description
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.

INeedSerieContainer.cs 253B

12345678910111213
  1. using System.Text;
  2. using UnityEngine;
  3. using UnityEngine.EventSystems;
  4. using UnityEngine.UI;
  5. namespace XCharts.Runtime
  6. {
  7. public interface INeedSerieContainer
  8. {
  9. int containerIndex { get; }
  10. int containterInstanceId { get; }
  11. }
  12. }