11 lines
184 B
C#
11 lines
184 B
C#
using System.Dynamic;
|
|
|
|
namespace ConsoleApp
|
|
{
|
|
public interface IMapFactory
|
|
{
|
|
int Height { get; }
|
|
int Width { get; }
|
|
SquareMap SquareMap { get; }
|
|
}
|
|
} |