blob: b47cfaaa70b070efd1f03922a5408bb62957a98f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using UILib;
using XMainClient.UI.UICommon;
namespace XMainClient
{
internal class XPatfaceBehaviour : DlgBehaviourBase
{
public IXUIButton m_OK;
public IXUITexture m_Pic;
private void Awake()
{
this.m_OK = (base.transform.Find("Bg/Ok").GetComponent("XUIButton") as IXUIButton);
this.m_Pic = (base.transform.Find("Bg/Texture").GetComponent("XUITexture") as IXUITexture);
}
}
}
|