AI and player play correctly

This commit is contained in:
Cyprien111
2025-03-31 10:10:27 +02:00
parent 7ba07d7498
commit a5d8512b34
3 changed files with 18 additions and 11 deletions

View File

@@ -38,5 +38,5 @@ abstract class Player{
* @param Board The actual Gomoku board.
* @return The coordinate of the move played.
*/
public abstract Coordinate chooseMove(GomokuBoard board);
public abstract GomokuCell chooseMove(GomokuBoard board);
}