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

Tache 4 (Constructeur de la classe CyclicColorGenerator).

parent a290a085
No related branches found
No related tags found
No related merge requests found
package model;
import javafx.scene.paint.Color;
import java.util.List;
public class CyclicColorGenerator implements ColorGenerator{
private List<Color> colors;
public CyclicColorGenerator(List<Color> colors){
this.colors = colors;
}
@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