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

index.js

Blame
  • 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);
    }