[Add] UI, menu, pause and timer

This commit is contained in:
2026-06-06 22:03:20 +07:00
parent 1483964eaf
commit f4ecf8b6f9
23 changed files with 2440 additions and 11 deletions
@@ -0,0 +1,13 @@
using System;
namespace Minesweeper.Core
{
public interface IGameTimerService
{
event Action<float> TimeChanged;
float ElapsedSeconds { get; }
void Reset();
}
}