package school_project; import javafx.application.Application; import javafx.scene.Parent; import javafx.scene.Scene; import javafx.stage.Stage; import school_project.Menu.*; public class Controller extends Application { private static Stage stage; Parent root; public void start(Stage primaryStage) { //set up the page root = new MenuAcceuil(); stage = primaryStage; stage.setTitle("ROAD TO MASTER"); stage.setScene(new Scene(root)); stage.show(); } public static void switchRoot(Parent root){ stage.setScene(new Scene(root)); } public static void main(String[] args) { launch(); } }