Files
robot_intelligence_final_pr…/ConsoleApp/Maps/IMapFactory.cs
2020-12-15 00:37:47 -07:00

15 lines
322 B
C#

using System.Collections.Generic;
using System.Dynamic;
namespace ConsoleApp.Maps
{
public interface IMapFactory
{
int Height { get; }
int Width { get; }
int CellWidth { get; }
void GenerateMaps(int x, int y);
IHexMap GetHexMap();
ISquareMap GetSquareMap();
}
}