mod human; use crate::game::{Board, Move}; pub use human::PlayerConsole; pub trait Player { fn request_move(&self, b: &Board) -> Result>; fn name(&self) -> &str; }