namespace TowerClimberChronicles { public class HallgameCtrl : BaseCtrl { public static HallgameCtrl Instance { get; private set; } private HallgameModel model; #region 生命周期 protected override void OnInit() { Instance = this; //model = ModuleManager.Instance..GetModel(ModelConst.HallgameModel) as HallgameModel; } protected override void OnDispose() { Instance = null; } #endregion } }