This commit is contained in:
2025-01-26 00:44:19 -05:00
parent 283158b00f
commit ad551391b2
4 changed files with 52 additions and 8 deletions

6
src/game.rs Normal file
View File

@@ -0,0 +1,6 @@
use crate::{agent::Agent, repr::Board};
pub struct Game {
players: [Box<dyn Agent>; 2],
board: Board,
}