summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/JokerKingMainBehavior.cs
blob: 326e6f97d4b2581d74b9136632eecac9c77c36a8 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using System;
using UILib;
using UnityEngine;
using XMainClient.UI.UICommon;
using XUtliPoolLib;

namespace XMainClient.UI
{
	internal class JokerKingMainBehavior : DlgBehaviourBase
	{
		public IXUIButton m_Close;

		public IXUIButton m_BtnRankReward;

		public IXUIButton m_BtnGo;

		public IXUIButton m_BtnDisable;

		public IXUILabelSymbol m_LabelSymbol;

		public IXUILabel m_info;

		public Transform m_Matching;

		public IXUISprite m_BtnRankSprite;

		public Transform m_RankList;

		public IXUIScrollView m_ScrollView;

		public IXUIWrapContent m_WrapContent;

		public IXUILabel m_IntroText;

		public Transform m_Reward;

		public XUIPool m_RewardPool = new XUIPool(XSingleton<XGameUI>.singleton.m_uiTool);

		private void Awake()
		{
			this.m_Close = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
			this.m_BtnGo = (base.transform.Find("Bg/Btn_Go").GetComponent("XUIButton") as IXUIButton);
			this.m_BtnRankReward = (base.transform.Find("Bg/BtnRankReward").GetComponent("XUIButton") as IXUIButton);
			this.m_BtnDisable = (base.transform.Find("Bg/Btn_Disable").GetComponent("XUIButton") as IXUIButton);
			this.m_info = (base.transform.Find("Bg/Info").GetComponent("XUILabel") as IXUILabel);
			this.m_RankList = base.transform.Find("Bg/RankList");
			this.m_ScrollView = (base.transform.Find("Bg/RankList/ScrollView").GetComponent("XUIScrollView") as IXUIScrollView);
			this.m_WrapContent = (base.transform.Find("Bg/RankList/ScrollView/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
			this.m_IntroText = (base.transform.Find("Bg/help/Intro/Text").GetComponent("XUILabel") as IXUILabel);
			this.m_Reward = base.transform.Find("Bg/help/Intro/Reward");
			Transform transform = base.transform.Find("Bg/help/Intro/Reward/item");
			this.m_RewardPool.SetupPool(this.m_Reward.gameObject, transform.gameObject, 5u, true);
			this.m_Matching = base.transform.Find("Bg/Matching");
			this.m_BtnRankSprite = (base.transform.Find("Bg/RankList/Mask").GetComponent("XUISprite") as IXUISprite);
			this.m_LabelSymbol = (base.transform.Find("Bg/Btn_Go/Go").GetComponent("XUILabelSymbol") as IXUILabelSymbol);
		}
	}
}