Skip to content
Snippets Groups Projects
Commit 06189654 authored by dragapsy's avatar dragapsy
Browse files

Tache 6 (La methode flood(Cell startCell, Color floodingColor) de la classe Flooder)

parent 7bccd77c
No related branches found
No related tags found
No related merge requests found
package model;
import javafx.scene.paint.Color;
public class Flooder {
static void flood(Cell startCell, Color floodingColor){
ColoredCellIterator myCell = new ColoredCellIterator(startCell);
while (myCell.hasNext()) {
myCell.next().setColor(floodingColor);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment