fix an stupid error

This commit is contained in:
bwbl 2024-10-24 01:31:20 +02:00
parent 33269da428
commit eb52af0886

View File

@ -548,7 +548,7 @@
public void DrawBoard(Token[,] board)
{
// déclaration de l'espacement du plateau
int playgroundSpacing = topSpacing + 3
int playgroundSpacing = topSpacing + 3;
for (int y = 0; y < board.GetLength(1); y++)
for (int x = 0; x < board.GetLength(0); x++)
{