// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2021-11-23
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
//
//
// ***********************************************************************
namespace G.UI
{
public partial class AvatarBox : KUIWindow
{
#region Constructor
public AvatarBox()
: base(UILayer.kPopup, UIMode.kNone)
{
uiPath = "ui_w_avatar";
}
#endregion
#region Method
#endregion
#region Unity
///
///
///
public override void Awake()
{
InitView();
}
///
///
///
public override void OnEnable()
{
RefreshView();
}
#endregion
}
}