jeu-de-combat/src/launcher/Launcher.java

30 lines
556 B
Java
Raw Normal View History

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;
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
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
}
}