Example #1
0
 public void AddLevel()
 {
     base.Level++;
     //TUDO s属性提升
     PlayerUpgradeRule.GetInstance().UpgradeOperation();
     base.LevelExperience = PlayerUpgradeRule._DicLevel[base.Level];
     Ctrl_TootipManager.Instance.ShowNotificationLevel(Level.ToString());
 }
Example #2
0
    public static PlayerUpgradeRule GetInstance()
    {
        if (_Instance == null)
        {
            _Instance = new PlayerUpgradeRule();
        }

        return(_Instance);
    }
Example #3
0
 public void UpgradeConition(int expValues)
 {
     PlayerUpgradeRule.GetInstance().UpgradeConition(expValues);
 }