modification

This commit is contained in:
2024-05-05 14:24:02 +02:00
parent b3ad68dc1d
commit 3468d8c2f5
3 changed files with 51 additions and 25 deletions

View File

@@ -13,9 +13,10 @@ public class SaveButton implements ActionListener {
private int GRID_SIZE;
private JTextField[][] grid;
public SaveButton(int GRID_SIZE, JTextField[][] grid ) {
public SaveButton(int GRID_SIZE, JTextField[][] grid) {
this.GRID_SIZE = GRID_SIZE;
this.grid = grid;
}
@Override