Esempio n. 1
0
 private boolean controlarSiElCantoDeFlorFinalizo() {
   int jugadoresConFlor = 0;
   for (Jugador jugador : this.jugadoresEnJuego) if (jugador.tieneFlor()) jugadoresConFlor++;
   return (this.cantoEnProcesoParaElTanto.terminoElProcesoDeCanto(jugadoresConFlor));
 }