Files
robot_intelligence_final_pr…/ConsoleApp/Maps/IMapFactory.cs
2020-12-16 04:02:37 -07:00

15 lines
345 B
C#

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