12345678910111213141516171819 |
- using System.Collections.Generic;
- using UnityEngine;
- using UnityEngine.UI;
- namespace ET.Client
- {
- [ComponentOf(typeof(UI))]
- public class UIStatsComponent : Entity, IAwake
- {
- public GameObject playListObj;
- public GameObject timeContentTxt;
- public GameObject nextTimeBtn;
- public GameObject preTimeBtn;
- public GameObject recodeBtn;
- public GameObject selPlayBtn;
- public GameObject noStatsTxt;
- public GameObject closeBtn;
- }
- }
|