//! Gameboard is a small library to create text UI for board games (like tic-tac-toe,
//! scrabble etc.). It allows you to easily draw and update board in the terminal.
//!
//! Board must be rectangular and must contain rectangular cells. Also information board is supported.
//!
//! Library uses [termion] crate for terminal input/output.
//!
//! [termion]: https://github.com/redox-os/termion
//!
pub use ;
pub use Cell;
pub use ;
pub use ;
pub use Cursor;