// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2021-06-04
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
//
//
// ***********************************************************************
namespace G.UI
{
public partial class GuildWindow : KUIWindow
{
#region Constructor
public GuildWindow()
: base(UILayer.kNormal, UIMode.kSequenceRemove)
{
uiPath = "ui_w_guild";
}
#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
}
}