summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XAnnouncementBehaviour.cs
blob: 4ba873a8272f8288ed7b37cb517f3328372ae0bb (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
{
	internal class XAnnouncementBehaviour : DlgBehaviourBase
	{
		public IXUIButton m_Enter;

		public IXUILabel m_Announcement;

		private void Awake()
		{
			this.m_Enter = (base.transform.Find("Bg/Enter").GetComponent("XUIButton") as IXUIButton);
			this.m_Announcement = (base.transform.Find("Bg/Panel/Text").GetComponent("XUILabel") as IXUILabel);
		}
	}
}