othello/src/game.rs
2025-01-26 00:44:19 -05:00

7 lines
113 B
Rust

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