// *********************************************************************** // Assembly : Game // Author : Kimch // Created : 2021-04-25 // Description : // Last Modified By : // Last Modified On : // *********************************************************************** // // // *********************************************************************** namespace G.UI { public partial class BattlePassWindow : KUIWindow { #region Constructor public BattlePassWindow() : base(UILayer.kFloat, UIMode.kSequenceHide) { uiPath = "ui_w_battle_pass"; } #endregion #region Method #endregion #region Unity /// /// /// public override void Awake() { InitView(); } /// /// /// public override void OnEnable() { RegisterThis(); RefreshView(); } public override void OnDisable() { UnregisterThis(); } /// /// /// public override void UpdatePerSecond() { UpdateView(); } #endregion } }