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

14 lines
220 B
C#

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