using BingoBrain.Core; namespace BingoBrain { public class BasptCtrl : BaseCtrl { public static BasptCtrl Instance { get; private set; } private BasptModel model; #region 生命周期 protected override void OnInit() { Instance = this; } protected override void OnDispose() { Instance = null; } #endregion } }