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

namespace XMainClient.UI
{
	internal class XTeamBattleQuickConfirmBehaviour : DlgBehaviourBase
	{
		public IXUIButton m_Cancel = null;

		public IXUILabel m_Time;

		private void Awake()
		{
			this.m_Cancel = (base.transform.Find("Bg/Cancel").GetComponent("XUIButton") as IXUIButton);
			this.m_Time = (base.transform.Find("Bg/CountDown").GetComponent("XUILabel") as IXUILabel);
		}
	}
}