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

14 lines
220 B
C#

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