summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Guild/XGuildDailyHandleRefreshBehavior.cs
blob: f22ff7a387233f3f2ad110063edd58352c797457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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);
		}
	}
}