summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/CutoverViewBehaviour.cs
blob: 119999f98e2e71c3996d6bd3d408078c03883214 (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
{
	internal class CutoverViewBehaviour : DlgBehaviourBase
	{
		public IXUICheckBox m_3D;

		public IXUICheckBox m_25D;

		public IXUIButton m_OK;

		private void Awake()
		{
			this.m_OK = (base.transform.Find("Bg/OK").GetComponent("XUIButton") as IXUIButton);
			this.m_3D = (base.transform.Find("Bg/3D").GetComponent("XUICheckBox") as IXUICheckBox);
			this.m_25D = (base.transform.Find("Bg/2.5D").GetComponent("XUICheckBox") as IXUICheckBox);
		}
	}
}