56 lines
1.0 KiB
C#
Raw Normal View History

2025-05-18 01:04:31 +08:00
// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2021-12-03
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
// <copyright file= "ShareWindow" company="Kunpo"></copyright>
// <summary></summary>
// ***********************************************************************
namespace G.UI
{
public partial class ShareWindow : KUIWindow
{
#region Constructor
public ShareWindow()
: base(UILayer.kFloat, UIMode.kNone)
{
uiPath = "ui_w_share";
}
#endregion
#region Method
#endregion
#region Unity
/// <summary>
///
/// </summary>
public override void Awake()
{
InitView();
}
/// <summary>
///
/// </summary>
public override void OnEnable()
{
InviteProxy.Instance.GetInviteCount((error, message) =>
{
if (error == 0)
RefreshView();
});
}
#endregion
}
}