Files
robot_intelligence_final_pr…/ConsoleApp/Maps/IMapFactory.cs

13 lines
274 B
C#

using System.Collections.Generic;
using System.Dynamic;
namespace ConsoleApp.Maps
{
public interface IMapFactory
{
int Height { get; }
int Width { get; }
Dictionary<string, IMap> Maps { get; }
void GenerateMaps(int x, int y);
}
}