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

67 lines
1.2 KiB
C#

// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2021-05-02
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
// <copyright file= "EndlessWindow" company="Kunpo"></copyright>
// <summary></summary>
// ***********************************************************************
namespace G.UI
{
public partial class EndlessWindow : KUIWindow
{
#region Constructor
public EndlessWindow()
: base(UILayer.kFloat, UIMode.kNone)
{
uiPath = "ui_w_endless";
}
#endregion
#region Method
#endregion
#region Unity
/// <summary>
///
/// </summary>
public override void Awake()
{
InitView();
}
/// <summary>
///
/// </summary>
public override void OnEnable()
{
RefreshView();
PostNotification(GlobalDefine.EVENT_WINDOW_OPENED, null, "EndlessWindow");
}
public override void OnDisable()
{
PostNotification(GlobalDefine.EVENT_WINDOW_CLOSED, null, "EndlessWindow");
}
/// <summary>
///
/// </summary>
public override void UpdatePerSecond()
{
UpdateView();
}
#endregion
}
}