Newer
Older
package model;
import javafx.scene.paint.Color;
public class UniformExceptOneGenerator implements ColorGenerator {
public UniformExceptOneGenerator(Color uniformColor, Color exceptionColor) {
}
@Override
public Color nextColor(Cell cell) {
return null;
}
}