makeyourownapp-jam/graphical-app/src/main/java/fr/emiko/graphicalapp/HelloApplication.java
2025-03-18 20:28:21 +01:00

23 lines
No EOL
643 B
Java

package fr.emiko.graphicalapp;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import java.io.IOException;
public class HelloApplication extends Application {
@Override
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 1280, 720);
stage.setTitle("PixelWriter");
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch();
}
}