Use the constant for the board size

This commit is contained in:
2023-02-01 11:52:37 +01:00
parent eaa386df88
commit 016ca31815
2 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
use crate::tile::Tile;
const BOARD_SIZE: usize = 25;
pub const BOARD_SIZE: usize = 25;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Board {