12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System.Collections.Generic;
- using UnityEngine;
- namespace ET.Client
- {
- [ComponentOf(typeof(UI))]
- public class UIMainComponent : Entity,IAwake
- {
- public GameObject createRoomBtn;
- public GameObject createRoomTxt;
- public GameObject joinRoomBtn;
- public GameObject clubRoomBtn;
- public GameObject playerId;
- public GameObject playerName;
- public GameObject playerIcon;
- public GameObject vipVaule;
- public GameObject expVaule;
- public GameObject playerLevel;
-
- public GameObject shopBtn;
- public GameObject settingBtn;
- public GameObject ruleBtn;
- public GameObject statsBtn;
- public GameObject shareBtn;
- public GameObject avtiveBtn;
-
- public GameObject iphoneBtn;
- public GameObject invitationCodeBtn;
- public GameObject realNameBtn;
-
- public GameObject hourseCardAddBtn;
- public GameObject hourseCardTxt;
- public GameObject curServiceBtn;
- public GameObject messageBtn;
-
- public GameObject titlePanelObj;
- public GameObject closeTitleBtn;
- public int createRoomType = 0;
- public string roomId = "";
- }
- }
|