Ejemplo n.º 1
0
 public bool UnlockSkill(int index)
 {
     if (myPlayer.level.actuallevel >= SkillList.ElementAt(index).block)
     {
         SkillList.ElementAt(index).Unlocked = true;
         SkillPoints--;
         return(true);
     }
     return(false);
 }