[Add] End game, Restart, Final Check

This commit is contained in:
2026-06-06 22:48:30 +07:00
parent b4207ce3d3
commit bb2463d970
8 changed files with 29 additions and 391 deletions
+5
View File
@@ -18,5 +18,10 @@ namespace Minesweeper.Core
Current = state;
StateChanged?.Invoke(Current);
}
public void NotifyCurrentStateChanged()
{
StateChanged?.Invoke(Current);
}
}
}
+1
View File
@@ -9,5 +9,6 @@ namespace Minesweeper.Core
GameState Current { get; }
void SetState(GameState state);
void NotifyCurrentStateChanged();
}
}