summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/XTeamInputPasswordBehaviour.cs
blob: 11f7ef2daff5d005ba1a9a720f50d2ddd85e0c96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using UILib;
using XMainClient.UI.UICommon;

namespace XMainClient.UI
{
	internal class XTeamInputPasswordBehaviour : DlgBehaviourBase
	{
		public IXUIInput m_Input;

		public IXUIButton m_BtnOK;

		public IXUIButton m_BtnClose;

		private void Awake()
		{
			this.m_BtnOK = (base.transform.Find("Bg/OK").GetComponent("XUIButton") as IXUIButton);
			this.m_BtnClose = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
			this.m_Input = (base.transform.Find("Bg/Input").GetComponent("XUIInput") as IXUIInput);
		}
	}
}