blob: 710856d16e2cdf99a2774ee8c3ebc22af21e4ed4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using UILib;
using XMainClient.UI.UICommon;
namespace XMainClient
{
internal class XLoginTipBehaviour : DlgBehaviourBase
{
public IXUITweenTool m_TipTween;
public IXUILabel m_TipLabel;
private void Awake()
{
this.m_TipTween = (base.transform.Find("Bg/Tip").GetComponent("XUIPlayTween") as IXUITweenTool);
this.m_TipLabel = (base.transform.Find("Bg/Tip/Text").GetComponent("XUILabel") as IXUILabel);
}
}
}
|