20 lines
469 B
Java
20 lines
469 B
Java
import javax.swing.*;
|
|
import java.awt.*;
|
|
|
|
public class EtatPartie extends JPanel {
|
|
// Définition du constructeur
|
|
public EtatPartie(int mines) {
|
|
super();
|
|
|
|
// On défini un style à la bannière
|
|
this.setBackground( new Color(0, 236, 96));
|
|
}
|
|
|
|
// Méthode pour afficher le nombre de mines restantes
|
|
public void setMinesLeft(int minesLeft){
|
|
this.removeAll();
|
|
this.add(new MineLeft(minesLeft,this.getSize()));
|
|
this.repaint();
|
|
this.updateUI();
|
|
}
|
|
} |