// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2020-12-23
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
//
//
// ***********************************************************************
namespace G.UI
{
///
/// 公告
///
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
///
///
///
public override void Awake()
{
InitView();
}
///
///
///
public override void OnEnable()
{
KRemoteConfig.Instance.newNotice = false;
RefreshView();
}
#endregion
}
}