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