10 lines
177 B
C#
10 lines
177 B
C#
namespace ConsoleApp.Maps
|
|
{
|
|
public interface IMineMap
|
|
{
|
|
bool[,] Map { get; }
|
|
|
|
int TotalBombs { get; }
|
|
bool GetCell(int x, int y);
|
|
}
|
|
} |