Files
FreewayGamesTest/Assets/Runtime/Core/IGameStateService.cs
T

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();
}
}