Skip to content
Snippets Groups Projects
Select Git revision
  • ab1b1ea5dbd26b0ffb38ce532a339791fe37684d
  • main default protected
  • variant
3 results

Fboard.java

Blame
  • Forked from LABOUREL Arnaud / Firefighter template
    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);
    }