From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/RecruitAuthorizeBehaviour.cs | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/RecruitAuthorizeBehaviour.cs (limited to 'Client/Assets/Scripts/XMainClient/RecruitAuthorizeBehaviour.cs') diff --git a/Client/Assets/Scripts/XMainClient/RecruitAuthorizeBehaviour.cs b/Client/Assets/Scripts/XMainClient/RecruitAuthorizeBehaviour.cs new file mode 100644 index 00000000..b375c86c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/RecruitAuthorizeBehaviour.cs @@ -0,0 +1,29 @@ +using System; +using UILib; +using UnityEngine; +using XMainClient.UI.UICommon; + +namespace XMainClient +{ + internal class RecruitAuthorizeBehaviour : DlgBehaviourBase + { + public IXUILabel _info; + + public IXUIButton _Close; + + public Transform _Empty; + + public IXUIScrollView _MemberScrollView; + + public IXUIWrapContent _MemberWrapContent; + + private void Awake() + { + this._info = (base.transform.Find("Info/Info").GetComponent("XUILabel") as IXUILabel); + this._Close = (base.transform.Find("Close").GetComponent("XUIButton") as IXUIButton); + this._Empty = base.transform.Find("Empty"); + this._MemberScrollView = (base.transform.Find("Panel").GetComponent("XUIScrollView") as IXUIScrollView); + this._MemberWrapContent = (base.transform.Find("Panel/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent); + } + } +} -- cgit v1.1-26-g67d0