コード例 #1
0
ファイル: SelectTarget.cs プロジェクト: Hooginator/HoilTest
 void AttackTarget(CharacterClass target)
 {
     // Now that we have selected a character, proceed with  the attack
     combat.HideSelectMenu();
     combat.actionTo = target;
     combat.doAction();
 }
コード例 #2
0
 public void AttackTarget(int target)
 {
     //print ("Attacking Target: " + target.ToString ());
     combat.HideSelectMenu();
     combat.PlayerAttack(0, target);
 }