diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PersonalCareerBehaviour.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PersonalCareerBehaviour.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PersonalCareerBehaviour.cs b/Client/Assets/Scripts/XMainClient/PersonalCareerBehaviour.cs new file mode 100644 index 00000000..6e8bc4fb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PersonalCareerBehaviour.cs @@ -0,0 +1,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);
+ }
+ }
+}
|