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

Tache 4 (Constructeur de la classe UniformColorGenerator)).

parent 5b3664e2
No related branches found
No related tags found
No related merge requests found
......@@ -2,18 +2,18 @@ package model;
import javafx.scene.paint.Color;
import java.util.Random;
public class UniformColorGenerator implements ColorGenerator{
private Color color;
public UniformColorGenerator(Color color){
this.color = color;
}
@Override
public Color nextColor(Cell cells) {
public Color nextColor(Cell cell) {
return this.color;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment