use crate::;
/// The 3,3,3-game, or [tic-tac-toe].
///
/// [tic-tac-toe]: https://en.wikipedia.org/wiki/Tic-tac-toe
pub type TicTacToe = ;
/// The 15,15,5-game, or [gomoku].
///
/// [gomoku]: https://en.wikipedia.org/wiki/Gomoku
pub type Gomoku = ;
/// The 6,7,4-game with gravity, or [Connect Four].
///
/// [Connect Four]: https://en.wikipedia.org/wiki/Connect_Four
pub type ConnectFour = ;