diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/Guild/XGuildDailyHandleRefreshBehavior.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/Guild/XGuildDailyHandleRefreshBehavior.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/Guild/XGuildDailyHandleRefreshBehavior.cs b/Client/Assets/Scripts/XMainClient/Guild/XGuildDailyHandleRefreshBehavior.cs new file mode 100644 index 00000000..f22ff7a3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/Guild/XGuildDailyHandleRefreshBehavior.cs @@ -0,0 +1,31 @@ +using System;
+using UILib;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class XGuildDailyHandleRefreshBehavior : DlgBehaviourBase
+ {
+ public IXUIScrollView ScrollView;
+
+ public IXUIWrapContent WrapContent;
+
+ public IXUILabel HelpTimesLabel;
+
+ public IXUIButton CloseBtn;
+
+ public IXUILabel FreeTimeLabel;
+
+ public IXUILabel TaskLucky;
+
+ private void Awake()
+ {
+ this.ScrollView = (base.transform.Find("Bg/List").GetComponent("XUIScrollView") as IXUIScrollView);
+ this.WrapContent = (base.transform.Find("Bg/List/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
+ this.HelpTimesLabel = (base.transform.Find("Bg/TimesDec/Times").GetComponent("XUILabel") as IXUILabel);
+ this.CloseBtn = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
+ this.FreeTimeLabel = (base.transform.Find("Bg/T").GetComponent("XUILabel") as IXUILabel);
+ this.TaskLucky = (base.transform.Find("Bg/TaskLevel/Lucky").GetComponent("XUILabel") as IXUILabel);
+ }
+ }
+}
|