Skip to content
Snippets Groups Projects
Select Git revision
  • d6f0f60e3127f95eaceb32d425fe72e032dd2b4d
  • master default protected
2 results

App.java

Blame
  • Forked from COUETOUX Basile / graphic-2020
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    GreedyStrategy.java 263 B
    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.");
        }
    
    }