66 lines
1.1 KiB
C#
Raw Normal View History

2025-05-18 01:04:31 +08:00
// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2021-01-11
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
// <copyright file= "LevelDetailBox" company="Kunpo"></copyright>
// <summary></summary>
// ***********************************************************************
namespace G.UI
{
public partial class LevelDetailBox : KUIWindow
{
#region Constructor
public LevelDetailBox()
: base(UILayer.kFloat, UIMode.kNone)
{
uiPath = "ui_main/ui_w_level_detail.prefab";
}
#endregion
#region Method
#endregion
#region Unity
/// <summary>
///
/// </summary>
public override void Awake()
{
InitView();
}
/// <summary>
///
/// </summary>
public override void OnEnable()
{
RefreshView();
}
/// <summary>
///
/// </summary>
public override void Update()
{
}
/// <summary>
///
/// </summary>
public override void UpdatePerSecond()
{
}
#endregion
}
}