add check for draw

This commit is contained in:
Dmitry Fedotov
2025-04-07 03:25:32 +03:00
parent b42659a604
commit 5b0119b5b6
3 changed files with 53 additions and 43 deletions

View File

@@ -11,7 +11,7 @@ impl PlayerConsole {
pub fn new(name: &str) -> impl Player {
PlayerConsole {
name: name.to_owned(),
piece: Cell::CellEmpty,
piece: Cell::Empty,
}
}