[bitboard] Add a BitBoard and a Position struct

This commit is contained in:
Eryn Wells 2023-12-19 11:13:06 -08:00
parent 8fd01e4f11
commit ebed5c05ed
3 changed files with 37 additions and 4 deletions

4
bitboard/src/bitboard.rs Normal file
View file

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