Exemplo n.º 1
0
 public int performSkill(Skill skill, Cell target)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Performs the selected Skill on a Target
 /// </summary>
 /// <param name="skill">Skill to Use</param>
 /// <param name="target">Target Unit</param>
 /// <returns>Final Value</returns>
 public int performSkill(Skill skill, Unit target)
 {
     return skill.callSkill(target);
 }