diff --git a/Banniere.java b/Banniere.java index c95221e..b7e0e8d 100644 --- a/Banniere.java +++ b/Banniere.java @@ -25,7 +25,11 @@ public class Banniere extends JPanel { public void setVictoire(){ this.add(new Fin("Victoire !",this.getSize())); this.repaint(); - // TODO : délai + try { + Thread.sleep(10000); + } catch (InterruptedException e){ + System.out.println("oops you didn't see the end"); + } new FrameMenu(); this.fenetre.dispose(); } @@ -34,7 +38,11 @@ public class Banniere extends JPanel { public void setDefaite(){ this.add(new Fin("Défaite !",this.getSize())); this.repaint(); - // TODO : délai + try { + Thread.sleep(10000); + } catch (InterruptedException e){ + System.out.println("oops you didn't see the end"); + } new FrameMenu(); this.fenetre.dispose(); } diff --git a/Case.java b/Case.java index b9090da..9f3d9af 100644 --- a/Case.java +++ b/Case.java @@ -100,9 +100,6 @@ public class Case extends JPanel { // Méthode pour savoir si le joueur pense que la case est minée public void setReperee(boolean reperee){ this.reperee=reperee; - if ((reperee)&&(minee)){ - this.grille.verifVictoire(); - } this.grille.MinesLeft(); } @@ -117,7 +114,7 @@ public class Case extends JPanel { if (this.minee==true){ removeAll(); this.setBackground(new Color(236, 214, 0));; - + this.updateUI(); } } diff --git a/Grille.java b/Grille.java index 529b9cf..41e1bc2 100644 --- a/Grille.java +++ b/Grille.java @@ -158,16 +158,6 @@ public class Grille extends JPanel{ } } - // Méthode montrer la défaite - public void Defaite(){ - // Montre toutes les cases du plateau - for (int i=0;i