placement of the pieces on the board

This commit is contained in:
LENG Sidenn 2025-04-18 16:17:10 +02:00
parent 85d0f8f769
commit 42a3089d12
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public class Board {
turn = 0; // initializing turn at 0
for (int i = 0; i<=n; i++) { // starting the loop for the counter
turn += 1; // Add +1 to turn for the counter after each pawns moved
} // end of the loop
} // end of the loops
return turn; // return the value of the counter
}