12 lines
225 B
C#
12 lines
225 B
C#
using System.Dynamic;
|
|
|
|
namespace ConsoleApp
|
|
{
|
|
public interface IMapFactory
|
|
{
|
|
int Height { get; }
|
|
int Width { get; }
|
|
SquareMap SquareMap { get; }
|
|
void GenerateMaps(int x, int y);
|
|
}
|
|
} |