feat: début environnement graphique, dessin fonctionnel, sauvegarde et chargement temporaire possible

This commit is contained in:
Emi Boucly 2025-03-17 11:14:27 +01:00
parent 8af801e4fd
commit 70e583a380
6 changed files with 195 additions and 19 deletions

View file

@ -12,7 +12,7 @@ public class HelloApplication extends Application {
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 320, 240);
stage.setTitle("Hello!");
stage.setTitle("PixelWriter");
stage.setScene(scene);
stage.show();
}