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