Skip to content
Snippets Groups Projects
Select Git revision
  • 1ebc96ed04750aa906a038ca5e5b64c290349f64
  • main default protected
  • master
3 results

Image.java

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();
    }