123456789101112131415161718192021222324 |
- using System.Collections.Generic;
- using Fort23.Core;
- namespace Fort23.Mono
- {
- public class UIDataManager:Entity
- {
- public static UIDataManager Instance { get; set; }
-
-
- /// <summary>
- /// 上阵英雄的id 排序从左到右
- /// </summary>
- public List<int> BattleHeroIdS;
-
- [CustomMethod(CustomMethodType.Awake)]
- public void Awake()
- {
- Instance = this;
-
- }
-
- }
- }
|