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

module-info.class.uniqueId1

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.
    Image.java 157 B
    package image;
    
    import javafx.scene.paint.Color;
    
    public interface Image {
        Color getPixelColor(int x, int y);
        int getWidth();
        int getHeight();
    }