mcts_lib/boards/
mod.rs

1//! Contains pre-made implementations of the `Board` trait for common games.
2
3/// A `Board` implementation for the game of Tic-Tac-Toe.
4pub mod tic_tac_toe;