spotless formatter

This commit is contained in:
lieght
2025-09-20 15:00:34 +02:00
parent f620ccc489
commit 323f401aad
4 changed files with 67 additions and 1 deletions

View File

@@ -40,6 +40,13 @@ public class UIGameBoard {
// Game grid
JPanel gameGrid = createGridPanel(TICTACTOE_SIZE, TICTACTOE_SIZE);
tttPanel.add(gameGrid, BorderLayout.CENTER);
// localTicTacToe.setMoveListener((playerIndex, moveIndex, symbol) -> {
// SwingUtilities.invokeLater(() -> {
// cells[moveIndex].setText(String.valueOf(symbol));
// });
// });
}
private JPanel createGridPanel(int sizeX, int sizeY) {

View File

@@ -226,4 +226,4 @@ public class LocalTicTacToe { // TODO: Implement runnable
public void setUIReference(UIGameBoard uiGameBoard) {
this.ui = uiGameBoard;
}
}
}