[bitboard] Implement a Square type; fix all the build issues after adding a mod line to lib.rs

This commit is contained in:
Eryn Wells 2023-12-20 11:45:12 -08:00
parent d080ddc735
commit ab55a7994c
4 changed files with 175 additions and 22 deletions

View file

@ -1,4 +1,4 @@
// Eryn Wells <eryn@erynwells.me>
#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct BitBoard(u64);
pub struct BitBoard(pub u64);