From 182ea6409e54115916246c8f99847eaad1cca25c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Macio=C5=82ek?= Date: Wed, 17 Jul 2024 23:30:27 +0200 Subject: [PATCH] knight moves p3 --- src/board.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/board.rs b/src/board.rs index 1861ed2..1e39a5c 100644 --- a/src/board.rs +++ b/src/board.rs @@ -323,6 +323,8 @@ impl Board { fn generate_knight_moves(&self, occupancy: Bitboard, position: usize) -> Vec { let mut moves = Vec::new(); + //let direction + moves } }