[board] Add neighbor and piece modules

Add a Direction enum in the neighbor module
Add Color and PieceShape enums, and a Piece struct to the piece module
This commit is contained in:
Eryn Wells 2023-12-23 09:18:01 -07:00
parent 70d8034e4e
commit 9bcd0b2148
3 changed files with 48 additions and 0 deletions

View file

@ -1,3 +1,5 @@
mod bitboard;
mod neighbor;
mod piece;
mod position;
mod square;