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

FirefighterBoard.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.
    Shape.java 213 B
    package shape;
    
    import javafx.geometry.Point2D;
    import javafx.scene.canvas.GraphicsContext;
    
    public interface Shape {
        int pointsCount();
        Point2D point(int index);
        void draw(GraphicsContext context);
    }