blob: 9a671f09bf44aa04c896f202408ddfdb6f5ca26b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using UILib;
using XMainClient.UI.UICommon;
namespace XMainClient
{
internal class XFriendsBlockBehaviour : DlgBehaviourBase
{
public IXUIButton m_Close;
public static readonly uint FUNCTION_NUM = 3u;
private void Awake()
{
this.m_Close = (base.transform.Find("Bg/Close").GetComponent("XUIButton") as IXUIButton);
}
}
}
|