add note to main.rs

This commit is contained in:
Simon Gardling 2025-02-26 23:00:27 -05:00
parent d3cac6ae91
commit 0ffded8488
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -7,11 +7,12 @@ mod game;
mod logic;
pub mod repr;
// TODO! make this agent configuration a config option via `clap-rs`
fn main() {
let player1 = complexagent::ComplexAgent::new(Piece::Black);
// let player2 = complexagent::ComplexAgent::new(Piece::White);
let player2 = agent::ManualAgent::new(Piece::White);
// let player2 = agent::RandomAgent::new(Piece::White);
// let player2 = agent::ManualAgent::new(Piece::White);
let player2 = agent::RandomAgent::new(Piece::White);
let mut game = Game::new(Box::new(player1), Box::new(player2));
game.game_loop();
}