1
2
3
4
5
6
7
8
//! A hexagonal grid representation based upon Red Blob Games' guide.

#![crate_name = "chickenwire"]
#![crate_type = "lib"]

pub mod coordinate;
pub mod hexgrid;
pub mod prelude;