Files
robot_intelligence_final_pr…/ConsoleApp/Maps/IMapFactory.cs
2020-12-10 14:35:10 -07:00

11 lines
184 B
C#

using System.Dynamic;
namespace ConsoleApp
{
public interface IMapFactory
{
int Height { get; }
int Width { get; }
SquareMap SquareMap { get; }
}
}