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