12345678910111213141516171819 |
- using System.Collections.Generic;
- using UnityEngine;
- namespace ET.Client
- {
- [ComponentOf(typeof(UI))]
- public class UIMainComponent : Entity, IAwake
- {
- public GameObject majiangBtn;
- public GameObject doudizhuBtn;
- public GameObject playerId;
- public GameObject playerName;
- public GameObject playerIcon;
- public GameObject vipVaule;
- public GameObject expVaule;
- public GameObject playerLevel;
- }
- }
|