58 lines
1.1 KiB
C#
58 lines
1.1 KiB
C#
![]() |
// ***********************************************************************
|
||
|
// Assembly : Game
|
||
|
// Author : Kimch
|
||
|
// Created : 2022-03-02
|
||
|
// Description :
|
||
|
// Last Modified By :
|
||
|
// Last Modified On :
|
||
|
// ***********************************************************************
|
||
|
// <copyright file= "OpenBoxWindow" company="Kunpo"></copyright>
|
||
|
// <summary></summary>
|
||
|
// ***********************************************************************
|
||
|
|
||
|
namespace G.UI
|
||
|
{
|
||
|
public partial class OpenBoxWindow : KUIWindow
|
||
|
{
|
||
|
#region Constructor
|
||
|
|
||
|
public OpenBoxWindow()
|
||
|
: base(UILayer.kNormal, UIMode.kSequenceHide)
|
||
|
{
|
||
|
uiPath = "ui_w_open_box";
|
||
|
}
|
||
|
|
||
|
#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, "ui_w_open_box");
|
||
|
}
|
||
|
|
||
|
public override void OnDisable()
|
||
|
{
|
||
|
PostNotification(GlobalDefine.EVENT_WINDOW_CLOSED, null, "ui_w_open_box");
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
}
|
||
|
}
|