Files
FreewayGamesTest/Assets/Minesweeper/Runtime/Presentation/Adapters/IGameStateViewAdapter.cs
T

10 lines
176 B
C#

using Minesweeper.Core;
namespace Minesweeper.Presentation.Adapters
{
public interface IGameStateViewAdapter
{
string GetDisplayName(GameState state);
}
}