diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/RecruitAuthorizeBehaviour.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/RecruitAuthorizeBehaviour.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/RecruitAuthorizeBehaviour.cs | 29 |
1 files changed, 29 insertions, 0 deletions
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);
+ }
+ }
+}
|