fix campagne 4

This commit is contained in:
2026-02-23 09:24:24 +01:00
parent 6feffb79d9
commit 08e68ad1ba

View File

@@ -1,6 +1,7 @@
package linea;
import java.awt.*;
import java.awt.event.ActionListener;
import javax.swing.*;
public class MenuCampagne extends JPanel {
@@ -72,11 +73,10 @@ public class MenuCampagne extends JPanel {
btnRetour.addActionListener(e -> jeu.afficherMenuPrincipal());
ActionListener ouvrirNiveaux = e -> cartes.show(panneauCartes, "NIVEAUX");
java.awt.event.ActionListener ouvrirNiveaux = e -> cartes.show(panneauCartes, "NIVEAUX");
btnC1.addActionListener(ouvrirNiveaux);
btnC2.addActionListener(ouvrirNiveaux);
btnC3.addActionListener(ouvrirNiveaux);
btnC4.addActionListener(ouvrirNiveaux);
btnRetourCampagnes.addActionListener(e -> cartes.show(panneauCartes, "LISTE"));