Skip to main content

mnk_games/
lib.rs

1//! Representations of k-in-a-row games.
2
3mod board;
4pub use board::{MnkBoard, PlaceError, Player, Space};
5
6mod games;
7pub use games::{GameStatus, MnkGame, PlayError};
8
9pub mod gravity;
10
11/// Well-known [`MnkGame`]s.
12pub mod variants;