// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2022-01-12
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
//
//
// ***********************************************************************
namespace G.UI
{
public partial class WheelWindow : KUIWindow
{
static WheelWindow _Instance;
#region Constructor
public WheelWindow()
: base(UILayer.kFloat, UIMode.kNone)
{
uiPath = "ui_w_wheel";
_Instance = this;
}
#endregion
#region Method
#endregion
#region Unity
///
///
///
public override void Awake()
{
InitView();
}
///
///
///
public override void OnEnable()
{
RefreshView();
}
///
///
///
public override void Update()
{
UpdateView();
}
///
///
///
public override void UpdatePerSecond()
{
}
#endregion
}
}