From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/UI/PairsPetInviteBehaviour.cs | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/UI/PairsPetInviteBehaviour.cs (limited to 'Client/Assets/Scripts/XMainClient/UI/PairsPetInviteBehaviour.cs') diff --git a/Client/Assets/Scripts/XMainClient/UI/PairsPetInviteBehaviour.cs b/Client/Assets/Scripts/XMainClient/UI/PairsPetInviteBehaviour.cs new file mode 100644 index 00000000..e6f0e3ce --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/UI/PairsPetInviteBehaviour.cs @@ -0,0 +1,25 @@ +using System; +using UILib; +using XMainClient.UI.UICommon; + +namespace XMainClient.UI +{ + internal class PairsPetInviteBehaviour : DlgBehaviourBase + { + public IXUIButton m_closeBtn; + + public IXUIButton m_ignoreBtn; + + public IXUIButton m_tempRejectBtn; + + public IXUIWrapContent m_wrapContent; + + private void Awake() + { + this.m_closeBtn = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton); + this.m_ignoreBtn = (base.transform.Find("Bg/BtnNo").GetComponent("XUIButton") as IXUIButton); + this.m_tempRejectBtn = (base.transform.Find("Bg/BtnOk").GetComponent("XUIButton") as IXUIButton); + this.m_wrapContent = (base.transform.Find("Bg/List/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent); + } + } +} -- cgit v1.1-26-g67d0