[board] Declare Board::flags() pub(crate) instead of pub

This commit is contained in:
Eryn Wells 2024-07-13 11:56:31 -07:00
parent 26ae79e17d
commit 3785502ea0

View file

@ -86,7 +86,7 @@ impl Board {
}
#[must_use]
pub(crate) fn flags(&self) -> &Flags {
pub fn flags(&self) -> &Flags {
&self.flags
}