Files
FreewayGamesTest/Assets/Scripts/Core/IGameStateService.cs
T
2026-06-07 00:30:10 +07:00

15 lines
262 B
C#

using System;
namespace Minesweeper.Core
{
public interface IGameStateService
{
event Action<GameState> StateChanged;
GameState Current { get; }
void SetState(GameState state);
void NotifyCurrentStateChanged();
}
}