Skip to content
Snippets Groups Projects
module-info.java 197 B
Newer Older
  • Learn to ignore specific revisions
  • module firefighter {
      requires javafx.controls;
      requires javafx.fxml;
      requires javafx.graphics;
    
    LABOUREL Arnaud's avatar
    LABOUREL Arnaud committed
      opens controller to javafx.fxml;
      exports app;
    
    BELHACHEMI Mehdi's avatar
    BELHACHEMI Mehdi committed
      exports view;
    
    LABOUREL Arnaud's avatar
    LABOUREL Arnaud committed
      opens app to javafx.fxml;
    }