blob: bc6a36ec31c41921fbb70fbe0fee796fc482ffe2 (
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
{
internal class RadioBehaviour : DlgBehaviourBase
{
public IXUILabel m_lblMicro;
public IXUIButton m_btnRadio;
public IXUISprite m_sprPlay;
private void Awake()
{
this.m_lblMicro = (base.transform.Find("Hoster").GetComponent("XUILabel") as IXUILabel);
this.m_btnRadio = (base.transform.Find("Btn").GetComponent("XUIButton") as IXUIButton);
this.m_sprPlay = (base.transform.Find("Btn/Play").GetComponent("XUISprite") as IXUISprite);
}
}
}
|