Beispiel #1
0
 /* pick defenders, use 1,2,3,4,5 for players */
 public int[] pickDefend(
     int yourScore, int opponentScore, int ballHolder, Game.Round previousRound) {
   attacking = false;
   if (previousRound != null && realGame) processRnd(myTeam, opposingTeam, previousRound);
   return currentCoach.pickDefend(yourScore, opponentScore, ballHolder, previousRound);
 }