Files
FreewayGamesTest/Assets/Runtime/Presentation/Adapters/IGameStateViewAdapter.cs
T
2026-06-06 22:33:15 +07:00

10 lines
176 B
C#

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