Skip to content
Snippets Groups Projects
Select Git revision
  • 624828aac3919a16c558df26c7a2056cecd2f6cb
  • main default protected
2 results

PlayStrategy.java

Blame
  • Forked from TRAVERS Corentin / flooding-template
    2 commits behind the upstream repository.
    TRAVERS Corentin's avatar
    TRAVERS Corentin authored
    624828aa
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    PlayStrategy.java 116 B
    package model;
    
    import javafx.scene.paint.Color;
    
    public interface PlayStrategy {
        Color play(Cell startCell);
    }