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

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

		public IXUILabelSymbol m_Text;

		public IXUIButton m_Select1;

		public IXUIButton m_Select2;

		private void Awake()
		{
			this.m_Close = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
			this.m_Text = (base.transform.Find("Bg/Label").GetComponent("XUILabelSymbol") as IXUILabelSymbol);
			this.m_Select1 = (base.transform.Find("Bg/Select1").GetComponent("XUIButton") as IXUIButton);
			this.m_Select2 = (base.transform.Find("Bg/Select2").GetComponent("XUIButton") as IXUIButton);
		}
	}
}