Skip to content
Snippets Groups Projects
GreedyStrategy.java 263 B
Newer Older
  • Learn to ignore specific revisions
  • package model ;
    import java.util.List;
    import javafx.scene.paint.Color;
    
    public class GreedyStrategy implements Strategies {
    
        @Override
        public void jouer(List<Color> colors) {
            throw new UnsupportedOperationException("Not supported yet.");
        }
    
    }