2025-05-18 01:04:31 +08:00

52 lines
944 B
C#

// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2021-08-02
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
// <copyright file= "SkinWindow" company="Kunpo"></copyright>
// <summary></summary>
// ***********************************************************************
namespace G.UI
{
public partial class SkinWindow : KUIWindow
{
#region Constructor
public SkinWindow()
: base(UILayer.kNormal, UIMode.kSequenceHide)
{
uiPath = "ui_w_cha_skin";
}
#endregion
#region Method
#endregion
#region Unity
/// <summary>
///
/// </summary>
public override void Awake()
{
InitView();
}
/// <summary>
///
/// </summary>
public override void OnEnable()
{
RefreshView();
}
#endregion
}
}