Files

45 lines
930 B
C#
Raw Permalink Normal View History

2026-04-20 12:06:34 +08:00
using System.Collections;
using System.Collections.Generic;
namespace BallKingdomCrush
{
public class SecretDetailCtrl : BaseCtrl
{
public static SecretDetailCtrl Instance { get; private set; }
private SecretDetailModel model;
#region
protected override void OnInit()
{
Instance = this;
//model = ModuleManager.Instance..GetModel(ModelConst.SecretDetailModel) as SecretDetailModel;
}
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
}
}