14 lines
200 B
C#
14 lines
200 B
C#
using System;
|
|
|
|
namespace Minesweeper.Core
|
|
{
|
|
public interface IGameTimerService
|
|
{
|
|
event Action<float> TimeChanged;
|
|
|
|
float ElapsedSeconds { get; }
|
|
|
|
void Reset();
|
|
}
|
|
}
|