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

dev.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Image.java 157 B
    package image;
    
    import javafx.scene.paint.Color;
    
    public interface Image {
        Color getPixelColor(int x, int y);
        int getWidth();
        int getHeight();
    }