UIDataManager.cs 497 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. using Fort23.Core;
  3. namespace Fort23.Mono
  4. {
  5. public class UIDataManager:Entity
  6. {
  7. public static UIDataManager Instance { get; set; }
  8. /// <summary>
  9. /// 上阵英雄的id 排序从左到右
  10. /// </summary>
  11. public List<int> BattleHeroIdS;
  12. [CustomMethod(CustomMethodType.Awake)]
  13. public void Awake()
  14. {
  15. Instance = this;
  16. }
  17. }
  18. }