This commit is contained in:
2025-01-23 16:43:34 -05:00
parent a1e2261d50
commit 3ab0f4bb5f
3 changed files with 121 additions and 2 deletions

15
src/agent.rs Normal file
View File

@@ -0,0 +1,15 @@
use crate::repr::Piece;
pub struct Agent {
color: Piece,
}
impl Agent {
pub const fn new(color: Piece) -> Self {
Self { color }
}
pub fn next_move() -> (usize, usize) {
todo!("next_move not implemented")
}
}