Menu
This commit is contained in:
parent
f21d2a9319
commit
c5e284c5eb
@ -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();
|
||||
|
@ -34,7 +34,7 @@ public class MenuController implements Initializable{
|
||||
|
||||
@FXML
|
||||
public void commencerPartie(MouseEvent mouseEvent) throws IOException{
|
||||
System.out.println("Passage à l'écran de choix des joueurs");
|
||||
System.out.println("Passage à l'écran de choix des joueurs");
|
||||
BorderPane pane = FXMLLoader.load(getClass().getResource("../ressources/Choix_joueur.fxml"));
|
||||
rootPane.getChildren().setAll(pane);
|
||||
}
|
||||
|
@ -118,7 +118,7 @@ public class PlateauController implements Initializable {
|
||||
}
|
||||
|
||||
public void showInformation(List<Joueur> j) {
|
||||
System.out.println("\tEcriture des noms des joueurs");
|
||||
System.out.println("\técriture des noms des joueurs");
|
||||
for (int i=0; i<j.size(); i++) {
|
||||
if (j.get(i) != null)
|
||||
nomJoueur.get(i).setText(j.get(i).getNom());
|
||||
|
Loading…
x
Reference in New Issue
Block a user