Rename fn names for better readability

This commit is contained in:
stefiosif
2024-10-06 11:15:29 +03:00
parent 28409d203a
commit 3fd3b1ea96
12 changed files with 102 additions and 121 deletions

View File

@@ -26,7 +26,7 @@ pub fn from_fen(fen: &str) -> Result<Game, FenError> {
fullmove_counter,
));
let mailbox = Mailbox::new_from_board(&board);
let mailbox = Mailbox::from_board(&board);
let hash = zobrist_keys().calculate_hash(&board);
Ok(Game {