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

namespace XMainClient.UI
{
	public class ModalThreeDlgBehaviour : DlgBehaviourBase
	{
		public IXUIButton m_Button1;

		public IXUIButton m_Button2;

		public IXUIButton m_Button3;

		public IXUIButton m_CloseButton;

		public IXUIPanel m_Panel;

		public IXUILabel m_Label = null;

		public IXUILabelSymbol m_LabelSymbol = null;

		private void Awake()
		{
			this.m_Button1 = (base.transform.Find("Bg/choice1").GetComponent("XUIButton") as IXUIButton);
			this.m_Button2 = (base.transform.Find("Bg/choice2").GetComponent("XUIButton") as IXUIButton);
			this.m_Button3 = (base.transform.Find("Bg/choice3").GetComponent("XUIButton") as IXUIButton);
			this.m_CloseButton = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
			this.m_Panel = (base.transform.GetComponent("XUIPanel") as IXUIPanel);
			Transform transform = base.transform.Find("Bg/Info");
			this.m_Label = (transform.GetComponent("XUILabel") as IXUILabel);
			this.m_LabelSymbol = (transform.GetComponent("XUILabelSymbol") as IXUILabelSymbol);
		}
	}
}