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

namespace XMainClient
{
	internal class XPandoraSDKPopViewBehaviour : DlgBehaviourBase
	{
		public IXUISprite m_Close;

		private void Awake()
		{
			this.m_Close = (base.transform.Find("Close").GetComponent("XUISprite") as IXUISprite);
		}
	}
}