UISettleComponent.cs 724 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. namespace ET.Client
  6. {
  7. public class SettleItemUI
  8. {
  9. public GameObject playItem;
  10. public Image playIcon;
  11. public Text playName;
  12. public Text playId;
  13. public GameObject fightCardContent;
  14. public GameObject haveBeenOutContent;
  15. public Image playSettleType;
  16. }
  17. [ComponentOf(typeof(UI))]
  18. public class UISettleComponent : Entity, IAwake
  19. {
  20. public GameObject closeBtn;
  21. public List<SettleItemUI> settleItemUIs = new List<SettleItemUI>();
  22. public GameObject fightCardItem;
  23. public GameObject fightCardItem1;
  24. public GameObject nextBtn;
  25. }
  26. }