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

15 lines
216 B
C#

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