Human class avec les playable cells

This commit is contained in:
Cyprien111
2025-03-24 10:52:52 +01:00
parent ee3ccb6201
commit 8890c73470
2 changed files with 36 additions and 22 deletions

View File

@@ -1,4 +1,7 @@
import java.util.List;
abstract class Player{
private String name;
@@ -7,5 +10,5 @@ abstract class Player{
return name;
}
public abstract Coordinate chooseMove();
public abstract Coordinate chooseMove(GomokuBoard Board);
}