Files
2020-12-16 04:50:21 -07:00

13 lines
252 B
C#

using System.Collections.Generic;
namespace ConsoleApp.Maps
{
public interface IMineMap
{
bool[,] Map { get; }
int TotalBombs { get; }
bool GetCell(int x, int y);
List<Cell> PlacedMines { get; }
}
}