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

Tache 4 (Constructeur de la classe UniformExceptOneGenerator)).

parent b8f0c30f
No related branches found
No related tags found
No related merge requests found
package model;
import javafx.scene.paint.Color;
public class UniformExceptOneGenerator implements ColorGenerator{
private Color uniColor;
private Color excepColor;
public UniformExceptOneGenerator(Color uniformColor, Color exceptionColor){
this.uniColor=uniformColor;
this.excepColor=exceptionColor;
}
@Override
public Color nextColor(Cell cell) {
return null;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment