[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

View file

@ -1,7 +1,3 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;