blob: 190a8636d871c4a693b0f8bcdc1b108bef66f41d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
using System;
using UILib;
using UnityEngine;
using XMainClient.UI.UICommon;
namespace XMainClient.UI
{
internal class GuildArenaRankBehaviour : DlgBehaviourBase
{
public IXUIButton m_Close;
public IXUIScrollView m_ScrollView;
public IXUIWrapContent m_WrapContent;
public Transform m_NA;
private void Awake()
{
this.m_NA = base.transform.Find("Bg/NA");
this.m_Close = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
this.m_ScrollView = (base.transform.Find("Bg/ScrollView").GetComponent("XUIScrollView") as IXUIScrollView);
this.m_WrapContent = (base.transform.Find("Bg/ScrollView/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
}
}
}
|