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

namespace XMainClient.UI
{
	internal class EquipTooltipDlgBehaviour : TooltipDlgBehaviour
	{
		public XUIPool m_JadeItemPool = new XUIPool(XSingleton<XGameUI>.singleton.m_uiTool);

		protected override void Awake()
		{
			this.m_JadeItemPool.SetupPool(base.transform.Find("Bg/Bg").gameObject, base.transform.Find("Bg/Bg/ToolTip/JadeFrame/JadeTpl").gameObject, 2u, false);
			base.Awake();
		}
	}
}