UIMainComponent.cs 417 B

12345678910111213141516171819
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. namespace ET.Client
  4. {
  5. [ComponentOf(typeof(UI))]
  6. public class UIMainComponent : Entity, IAwake
  7. {
  8. public GameObject majiangBtn;
  9. public GameObject doudizhuBtn;
  10. public GameObject playerId;
  11. public GameObject playerName;
  12. public GameObject playerIcon;
  13. public GameObject vipVaule;
  14. public GameObject expVaule;
  15. public GameObject playerLevel;
  16. }
  17. }