/** * CLASS LAUNCHER * * Fenêtre de configuration du jeu préalablement au lancement d'une partie * * @author François Autin * */ package launcher; import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Parent; import javafx.scene.Scene; import javafx.scene.shape.Circle; import javafx.stage.Stage; import javafx.fxml.*; public class Launcher extends Application { Parent root = FXMLLoader.load("ui/main.fxml"); Scene main = new Scene() public void start(Stage primaryStage) throws Exception { } }