Files
2026-04-20 12:06:34 +08:00

45 lines
942 B
C#

using System.Collections;
using System.Collections.Generic;
namespace BallKingdomCrush
{
public class SecretAlbumsNextCtrl : BaseCtrl
{
public static SecretAlbumsNextCtrl Instance { get; private set; }
private SecretAlbumsNextModel model;
#region 生命周期
protected override void OnInit()
{
Instance = this;
//model = ModuleManager.Instance..GetModel(ModelConst.SecretAlbumsModel) as SecretAlbumsModel;
}
protected override void OnDispose()
{
Instance = null;
}
#endregion
#region 消息
protected override void AddListener()
{
}
protected override void RemoveListener()
{
}
protected override void AddServerListener()
{
}
protected override void RemoveServerListener()
{
}
#endregion
}
}