68 lines
1.2 KiB
C#
Raw Normal View History

2025-05-18 01:04:31 +08:00
// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2021-06-07
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
// <copyright file= "HomeWindow" company="Kunpo"></copyright>
// <summary></summary>
// ***********************************************************************
namespace G.UI
{
public partial class BusinessWindow : KUIWindow
{
#region Constructor
public BusinessWindow()
: base(UILayer.kFloat, UIMode.kSequenceHide)
{
uiPath = "ui_w_business";
}
#endregion
#region Method
#endregion
#region Unity
/// <summary>
///
/// </summary>
public override void Awake()
{
InitView();
}
/// <summary>
///
/// </summary>
public override void OnEnable()
{
//RegisterThis();
RefreshView();
PostNotification(GlobalDefine.EVENT_WINDOW_OPENED, null, "HomePanel");
}
public override void OnDisable()
{
//UnregisterThis();
}
/// <summary>
///
/// </summary>
public override void UpdatePerSecond()
{
UpdateView();
}
#endregion
}
}