2021-05-03 02:29:11 +02:00
|
|
|
/**
|
|
|
|
* CLASS LAUNCHER
|
|
|
|
*
|
|
|
|
* Fenêtre de configuration du jeu préalablement au lancement d'une partie
|
|
|
|
*
|
|
|
|
* @author François Autin
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
package launcher;
|
|
|
|
|
2021-05-27 03:02:36 +02:00
|
|
|
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.*;
|
2021-05-03 02:29:11 +02:00
|
|
|
|
2021-05-27 03:02:36 +02:00
|
|
|
public class Launcher extends Application {
|
|
|
|
|
|
|
|
Parent root = FXMLLoader.load("ui/main.fxml");
|
|
|
|
Scene main = new Scene()
|
|
|
|
|
|
|
|
public void start(Stage primaryStage) throws Exception {
|
2021-05-03 02:29:11 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|