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

gradlew

Blame
  • Forked from LABOUREL Arnaud / Vector 2023
    Source project has a limited visibility.
    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);
    }