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 } }