Skip to content
Snippets Groups Projects
Select Git revision
  • 4c5ed0df0e42509648e84b9f6a9d369fda7ba922
  • main default protected
2 results

GreedyStrategy.java

Blame
  • Forked from TRAVERS Corentin / flooding-template
    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.");
        }
    
    }