blob: b375c86c3333e136104a10caf020c66634512f56 (
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
27
28
29
|
using System;
using UILib;
using UnityEngine;
using XMainClient.UI.UICommon;
namespace XMainClient
{
internal class RecruitAuthorizeBehaviour : DlgBehaviourBase
{
public IXUILabel _info;
public IXUIButton _Close;
public Transform _Empty;
public IXUIScrollView _MemberScrollView;
public IXUIWrapContent _MemberWrapContent;
private void Awake()
{
this._info = (base.transform.Find("Info/Info").GetComponent("XUILabel") as IXUILabel);
this._Close = (base.transform.Find("Close").GetComponent("XUIButton") as IXUIButton);
this._Empty = base.transform.Find("Empty");
this._MemberScrollView = (base.transform.Find("Panel").GetComponent("XUIScrollView") as IXUIScrollView);
this._MemberWrapContent = (base.transform.Find("Panel/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
}
}
}
|