This commit is contained in:
EmmanuelTiamzon
2025-10-14 14:41:43 +02:00
parent 2d715a4b04
commit 016c70aab4
6 changed files with 7 additions and 2 deletions

View File

@@ -24,6 +24,11 @@ public class AffichageQuestion extends JPanel {
public AffichageQuestion() {
this.modeSolution = false;
}
public JLabel afficherQuestion(Question question, int indexQuestion, ChoixUtilisateur choixUtilisateur) {
JLabel labelQuestion = new JLabel(question.makeNewQuestion());
return labelQuestion;
}
}
/*