diff --git a/goldchess-gen/src/main.rs b/goldchess-gen/src/main.rs index 67e40f3..896a1ee 100644 --- a/goldchess-gen/src/main.rs +++ b/goldchess-gen/src/main.rs @@ -95,6 +95,14 @@ fn pretty_print(tokens: &impl ToString) { } fn main() { + pretty_print("e! { + //! This file is generated by `goldchess-gen`. Do not edit it manually. + #![allow(dead_code)] + #![allow(clippy::unreadable_literal)] + #![allow(clippy::cast_possible_truncation)] + #![allow(clippy::struct_field_names)] + }); + gen_moves!(KING_MOVES, king_moves); gen_moves!(KNIGHT_MOVES, knight_moves); gen_moves!(PAWN_ATTACKS_WHITE, pawn_attacks, Color::White);