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