Afficher choisir joueur

This commit is contained in:
Yessine-iut 2020-05-11 15:19:17 +02:00
parent c9046f1316
commit f977a55c5f

View File

@ -369,6 +369,17 @@ public class PlateauController implements Initializable {
}
public void afficherChoisirJoueur(Joueur j) throws IOException {
final URL fxmlURL = getClass().getResource("/ihm/ressources/choixJoueurAttq.fxml");
final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", Locale.FRANCE);
final FXMLLoader fxmlLoader = new FXMLLoader(fxmlURL, bundle);
Pane root = (Pane)fxmlLoader.load();
this.cj = fxmlLoader.getController();
JoueurIHM jihm = getJoueurIHM(j);
jihm.setZoneJoueur(root);
}
public CarteEquipement getChoixEquipementVole(Joueur joueur) {
JoueurIHM jihm = getJoueurIHM(joueur);