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