// *********************************************************************** // Assembly : Game // Author : Kimch // Created : 2021-08-02 // Description : // Last Modified By : // Last Modified On : // *********************************************************************** // // // *********************************************************************** 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 /// /// /// public override void Awake() { InitView(); } /// /// /// public override void OnEnable() { RefreshView(); } #endregion } }