This commit is contained in:
2025-02-18 15:08:35 -05:00
parent 22bc4876e5
commit 1972707f88
3 changed files with 16 additions and 0 deletions

View File

@@ -131,6 +131,12 @@ impl fmt::Debug for Board {
}
}
impl Default for Board {
fn default() -> Self {
Self::new()
}
}
impl Board {
/// Create a new empty board
pub const fn new() -> Self {