예제 #1
0
파일: Vehicle.cs 프로젝트: WebDaD/StraTic
 public int performSkill(Skill skill, Cell target)
 {
     throw new NotImplementedException();
 }
예제 #2
0
파일: Squad.cs 프로젝트: WebDaD/StraTic
 /// <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);
 }