Skip to content
Snippets Groups Projects
Select Git revision
  • 3326b3795f3dfcbee6915111147672c58484c79d
  • master default
2 results

PongApp.java

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