Files
robot_intelligence_final_pr…/ConsoleApp/Maps/IMapFactory.cs
Brady Bodily d63066c150 Backup
Working through some localization stuff will probably be pretty fluid.
2020-12-14 16:08:59 -07:00

14 lines
305 B
C#

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