blob: 386f6052b0af4578a52a60d945e5fdce2b4c8a00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using UILib;
using XMainClient.UI.UICommon;
namespace XMainClient.UI
{
public class GuildInheritProcessBehaviour : DlgBehaviourBase
{
protected internal IXUISlider mProcessSlider;
protected internal IXUILabel mProcessLabel;
protected internal IXUILabel mContentLabel;
private void Awake()
{
this.mProcessSlider = (base.transform.Find("Bg/Process").GetComponent("XUISlider") as IXUISlider);
this.mProcessLabel = (base.transform.Find("Bg/ProcessLabel").GetComponent("XUILabel") as IXUILabel);
this.mContentLabel = (base.transform.Find("Bg/Content").GetComponent("XUILabel") as IXUILabel);
}
}
}
|