Add getField() method to Gui

Gui
Justin 2025-06-18 20:31:27 +02:00
parent 987bd867c8
commit 582a03178d
1 changed files with 4 additions and 0 deletions

View File

@ -106,4 +106,8 @@ public class Gui {
return statsPanel;
}
public JLabel getField(int row, int col) {
return fields[row][col];
}
}