summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/DragonCrusadeBehavior.cs
blob: 10b4b3d984444f112dcfab1c8bc486d66f03defb (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
using System;
using UILib;
using UnityEngine;
using XMainClient.UI.UICommon;

namespace XMainClient.UI
{
	internal class DragonCrusadeBehavior : DlgBehaviourBase
	{
		public IXUIButton m_Help;

		public IXUISprite slideSprite = null;

		public GameObject goLoading = null;

		public IXUILabel goLoadingTxt = null;

		public GameObject mMyRank = null;

		public IXUIButton m_closed = null;

		public IXUIButton m_leftBtn = null;

		public IXUIButton m_rightBtn = null;

		public IXUISprite m_myRankSpr = null;

		private void Awake()
		{
			this.m_closed = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
			this.m_myRankSpr = (base.transform.Find("Bg/MyRank").GetComponent("XUISprite") as IXUISprite);
			this.m_leftBtn = (base.transform.Find("Bg/Left").GetComponent("XUIButton") as IXUIButton);
			this.m_rightBtn = (base.transform.Find("Bg/Right").GetComponent("XUIButton") as IXUIButton);
			this.slideSprite = (base.transform.Find("Bg").GetComponent("XUISprite") as IXUISprite);
			this.mMyRank = base.transform.Find("Bg/MyRank/My").gameObject;
			this.goLoading = base.transform.Find("Loading").gameObject;
			this.goLoadingTxt = (base.transform.Find("Loading/Bg/Slogan").GetComponent("XUILabel") as IXUILabel);
			this.goLoading.SetActive(false);
			this.m_Help = (base.transform.Find("Help").GetComponent("XUIButton") as IXUIButton);
		}
	}
}