Files
robot_intelligence_final_pr…/ConsoleApp/Maps/IMapFactory.cs
Brady Bodily 42dd13f7d6 Added maps
2020-12-10 14:44:11 -07:00

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);
}
}