chessfriend/core/src/lib.rs

14 lines
262 B
Rust
Raw Normal View History

// Eryn Wells <eryn@erynwells.me>
pub mod colors;
pub mod coordinates;
pub mod pieces;
pub mod shapes;
mod macros;
pub use colors::Color;
pub use coordinates::{Direction, File, Rank, Square, Wing};
pub use pieces::{Piece, PlacedPiece};
pub use shapes::Shape;