This commit is contained in:
Chiara
2020-04-23 09:08:52 +02:00
parent f21d2a9319
commit c5e284c5eb
3 changed files with 4 additions and 3 deletions

View File

@@ -10,7 +10,8 @@ import javafx.stage.Stage;
public class Main extends Application{
@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("ressources/jouerSonTour6.fxml"));
System.out.println("Lancement de l'application");
Parent root = FXMLLoader.load(getClass().getResource("ressources/Menu.fxml"));
primaryStage.setTitle("Shadow Hunters");
primaryStage.setScene(new Scene(root));
primaryStage.show();