Files
FreewayGamesTest/Assets/Runtime/Core/IGameTimerService.cs
T
2026-06-06 22:33:15 +07:00

14 lines
200 B
C#

using System;
namespace Minesweeper.Core
{
public interface IGameTimerService
{
event Action<float> TimeChanged;
float ElapsedSeconds { get; }
void Reset();
}
}