mise à jour correctif 2.5
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
|
||||
public class SudokuGridTesteur extends JFrame {
|
||||
public class SudokuGridJoueur extends JFrame {
|
||||
private static final int GRID_SIZE = 9; // Taille de la grille Sudoku 9x9
|
||||
private static final int REGION_SIZE = 3;
|
||||
public static final boolean BOOL = false;
|
||||
private JTextField[][] grid;
|
||||
|
||||
public SudokuGridTesteur() {
|
||||
public SudokuGridJoueur() {
|
||||
// Panneau pour la grille Sudoku.
|
||||
JPanel gridPanel = new JPanel();
|
||||
gridPanel.setLayout(new GridLayout(GRID_SIZE, GRID_SIZE)); // Utiliser GridLayout
|
||||
|
Reference in New Issue
Block a user