Exemplo n.º 1
0
 /** Effectue un tirage au sort */
 public void tirageAuSort() {
   int random = (int) (Math.random() * 2);
   if (random == 0) {
     tour = new Tour(joueur1);
   } else {
     tour = new Tour(joueur2);
   }
 }