// *********************************************************************** // Assembly : Game // Author : Kimch // Created : 2021-04-22 // Description : // Last Modified By : // Last Modified On : // *********************************************************************** // // // *********************************************************************** namespace G.UI { public partial class GetPetBox : KUIWindow { #region Constructor public GetPetBox() : base(UILayer.kPopup, UIMode.kNone) { uiPath = "ui_w_get_pet"; } #endregion #region Method #endregion #region Unity /// /// /// public override void Awake() { InitView(); } /// /// /// public override void OnEnable() { RefreshView(); PostNotification(GlobalDefine.EVENT_WINDOW_OPENED, null, "GetPetBox"); } public override void OnDisable() { PostNotification(GlobalDefine.EVENT_WINDOW_CLOSED, null, "GetPetBox"); } #endregion } }