zchess 0.1.0

(WIP) A library for calculating chess moves in a 3-dimensional space.
Documentation
//! Holds the types required by the library.

// private imports...
mod arena;
mod board;
mod bytes;
mod color;
mod error;
mod piece;
mod place;

// public re-exports...
pub use bytes::*;
pub use error::*;
pub use place::*;
pub use arena::Arena;
pub use board::Board;
pub use color::Color;
pub use piece::Piece;