Ejemplo n.º 1
0
 /** Routine graphique lorsque la commande Action est appuyé */
 public void IhmActionAppuyé() {
   ihmjeu.getCommande2().setVisible(false);
   ihmjeu.remove(ihmjeu.getCommande2());
   ihmjeu.setCommande3(
       new IHMCommandeVue3(personnageSelectionné, ihmjeu, this, getJoueurCourant()));
   ihmjeu.getContentPane().add(ihmjeu.getCommande3(), BorderLayout.SOUTH);
   ihmjeu.afficherTerminal("Selectionner une Action");
   this.setPhase(Phase.ACTION_PERSONNAGE);
 }