8 lines
167 B
C#
8 lines
167 B
C#
namespace Minesweeper.Presentation.Factories
|
|
{
|
|
public interface ICellViewFactory
|
|
{
|
|
string BuildCellName(int x, int y, int value, bool isMine);
|
|
}
|
|
}
|