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