SAE21_2021/EtatPartie.java

21 lines
547 B
Java
Raw Normal View History

2022-05-04 23:23:27 +02:00
import javax.swing.*;
import java.awt.*;
public class EtatPartie extends JPanel {
// Définition du constructeur
2022-05-05 22:29:04 +02:00
public EtatPartie(int mines) {
2022-05-04 23:23:27 +02:00
super();
// On défini un style et une taille à la bannière
this.setBackground( new Color(0, 236, 96));
2022-05-05 22:29:04 +02:00
setMinesLeft(mines);
2022-05-04 23:23:27 +02:00
}
2022-05-05 22:29:04 +02:00
// Méthode pour afficher le nombre de mines restantes
protected void setMinesLeft(int minesLeft){
this.add(new MineLeft(minesLeft,this.getSize()));
//System.out.println("Mines restantes : "+minesLeft);
this.repaint();
this.updateUI();
}
2022-05-04 23:23:27 +02:00
}