7 lines
100 B
C#
7 lines
100 B
C#
namespace ConsoleApp.Maps
|
|
{
|
|
public interface IMineMap
|
|
{
|
|
bool[,] Map { get; }
|
|
}
|
|
} |