use crate::{agent::Agent, repr::Board}; pub struct Game { players: [Box; 2], board: Board, }