Bots Aleatoires + Simu parties + csv de resultats

This commit is contained in:
2026-02-02 13:11:57 +01:00
parent 22891ae2b6
commit fa96aae6e6
15 changed files with 10473 additions and 0 deletions

View File

@@ -308,4 +308,10 @@ public class HexBoard extends AbstractBoard {
sb.append("Current player: ").append(getCurrentPlayer()).append("\n");
return sb.toString();
}
public Player getCellPlayer(int r, int c) {
return cells[r][c];
}
}