Ajout Grille + Swing UI Grille Sudoku

This commit is contained in:
Vincent
2024-04-28 01:40:14 +02:00
commit a13d298097
6 changed files with 240 additions and 0 deletions

21
Cell.java Normal file
View File

@@ -0,0 +1,21 @@
public class Cell {
private int value;
public Cell() {
this.value = 0;
}
// Constructeur prenant une valeur comme argument
public Cell(int value) {
this.value = value;
}
public int getValue() {
return value;
}
public void setValue(int value) {
this.value = value;
}
}