This commit is contained in:
2025-02-08 22:49:52 -05:00
parent ec0eb7f849
commit cc14073582
3 changed files with 5 additions and 0 deletions

View File

@@ -32,6 +32,8 @@ impl Game {
pub fn step(&mut self, player_i: usize) {
let player_color = self.players[player_i].color();
// TODO! move this to `ManualAgent` as it's only really useful
// when it comes to human input
loop {
let player_move = self.players[player_i].next_move(&self.board);