Files
FreewayGamesTest/Assets/Minesweeper/Runtime/Core/IGamePauseService.cs
T

15 lines
216 B
C#

using System;
namespace Minesweeper.Core
{
public interface IGamePauseService
{
event Action<bool> PauseChanged;
bool IsPaused { get; }
void Pause();
void Resume();
}
}