blob: 6e8bc4fb4e52bafb2904cca66689de80a860fa6f (
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 UnityEngine;
using XMainClient.UI.UICommon;
using XUtliPoolLib;
namespace XMainClient
{
internal class PersonalCareerBehaviour : DlgBehaviourBase
{
public IXUIButton m_Close;
public XUIPool m_TabPool = new XUIPool(XSingleton<XGameUI>.singleton.m_uiTool);
private void Awake()
{
this.m_Close = (base.transform.Find("Close").GetComponent("XUIButton") as IXUIButton);
Transform transform = base.transform.Find("Tabs/TabTpl");
this.m_TabPool.SetupPool(null, transform.gameObject, 3u, false);
}
}
}
|