Example #1
0
 public void AddExpToSkill()
 {
     if (SaveData.current.profile.exp > 0 && skill != null)
     {
         SaveData.current.profile.exp--;
         skill.AddExp(1);
         SelectSkill(skill);
         ShowExpAmount();
     }
 }