Files
robot_intelligence_final_pr…/ConsoleApp/Maps/IMapFactory.cs
Brady Bodily 325c6a16eb Fixed namspace
2020-12-10 14:50:55 -07:00

12 lines
230 B
C#

using System.Dynamic;
namespace ConsoleApp.Maps
{
public interface IMapFactory
{
int Height { get; }
int Width { get; }
SquareMap SquareMap { get; }
void GenerateMaps(int x, int y);
}
}