57 lines
1.0 KiB
C#
Raw Normal View History

2025-05-18 01:04:31 +08:00
// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2020-12-23
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
// <copyright file= "NoticeBox" company="Kunpo"></copyright>
// <summary></summary>
// ***********************************************************************
namespace G.UI
{
/// <summary>
/// 公告
/// </summary>
public partial class NoticeBox : KUIWindow
{
#region Constructor
public NoticeBox()
: base(UILayer.kPopup, UIMode.kNone)
{
uiPath = "ui_common/ui_w_notice.prefab";
}
#endregion
#region Method
#endregion
#region Unity
/// <summary>
///
/// </summary>
public override void Awake()
{
InitView();
}
/// <summary>
///
/// </summary>
public override void OnEnable()
{
KRemoteConfig.Instance.newNotice = false;
RefreshView();
}
#endregion
}
}