This commit is contained in:
2025-01-28 15:05:32 -05:00
parent 565f638b1b
commit 9f6be9b669
8 changed files with 317 additions and 29 deletions

View File

@@ -52,21 +52,3 @@ impl Agent for QueueAgent {
self.color
}
}
pub struct AutoAgent {
color: Piece,
}
impl Agent for AutoAgent {
fn next_move(&mut self, _: &Board) -> Option<(usize, usize)> {
todo!("next_move not implemented")
}
fn name(&self) -> &'static str {
"Auto Agent"
}
fn color(&self) -> Piece {
self.color
}
}