using System; using UILib; using XMainClient.UI.UICommon; namespace XMainClient.UI { internal class PPTBehaviour : DlgBehaviourBase { public IXUILabel m_PPT; public IXUILabel m_IncreasePPT; public IXUILabel m_DecreasePPT; private void Awake() { this.m_PPT = (base.transform.Find("Bg/PPT").GetComponent("XUILabel") as IXUILabel); this.m_IncreasePPT = (base.transform.Find("Bg/Delta/Inc").GetComponent("XUILabel") as IXUILabel); this.m_DecreasePPT = (base.transform.Find("Bg/Delta/Dec").GetComponent("XUILabel") as IXUILabel); } } }