This commit is contained in:
rubenpirreram
2026-03-07 16:40:43 +01:00
commit ee60efd1bb
16 changed files with 726 additions and 0 deletions
@@ -0,0 +1,19 @@
package it.polimi.ingsw.gc14;
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(), 320, 240);
stage.setTitle("Hello!");
stage.setScene(scene);
stage.show();
}
}