rust_reversi_core 1.0.2

A Rust library for the game of Reversi including AI players and arena for playing games.
Documentation
1
2
3
4
5
6
7
8
mod core;
mod error;
mod local;
mod network;
pub use error::*;
pub use local::LocalArena;
pub use network::NetworkArenaClient;
pub use network::NetworkArenaServer;