10 lines
176 B
C#
10 lines
176 B
C#
using Minesweeper.Core;
|
|
|
|
namespace Minesweeper.Presentation.Adapters
|
|
{
|
|
public interface IGameStateViewAdapter
|
|
{
|
|
string GetDisplayName(GameState state);
|
|
}
|
|
}
|