2024-04-08 18:16:40 +02:00
|
|
|
import javax.swing.JOptionPane;
|
|
|
|
|
2024-04-09 17:13:23 +02:00
|
|
|
public class RulesDialogManager implements DialogManager {
|
|
|
|
@Override
|
|
|
|
public void showDialog() {
|
2024-04-08 18:16:40 +02:00
|
|
|
RulesSudoku rulesPanel = new RulesSudoku();
|
|
|
|
JOptionPane.showMessageDialog(null, rulesPanel, "Règles du Sudoku", JOptionPane.PLAIN_MESSAGE);
|
|
|
|
}
|
2024-04-09 17:13:23 +02:00
|
|
|
}
|