blob: 5bd3ec0500f5b07f53d42c17f6c7f44a985a484b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using System;
using UILib;
using UnityEngine;
using XMainClient.UI.UICommon;
namespace XMainClient
{
internal class XTeamLeagueRankBehavior : DlgBehaviourBase
{
public IXUIButton CloseBtn;
public IXUIWrapContent WrapContent;
public Transform NoRankTrans;
private void Awake()
{
this.CloseBtn = (base.transform.Find("Close").GetComponent("XUIButton") as IXUIButton);
this.WrapContent = (base.transform.Find("Panel/wrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
this.NoRankTrans = base.transform.Find("NoRank");
}
}
}
|