things
This commit is contained in:
15
src/agent.rs
Normal file
15
src/agent.rs
Normal 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")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user