extern crate test;
/// Main module, contains basics `Structures`.
pub use *;
pub use *;
pub use *;
pub use *;
/// Represent the `width` and `height` of the `Grid`.
pub const GRID_LEN: usize = 19;
/// Represent a position on the `Grid`.
pub type Position = ;
/// Represent a `Grid` tile, `None` indicates no stone.
pub type Tile = ;
/// Represent the Gomoku `grid` (19x19).
pub type Grid = ;