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

16 lines
373 B
C#

using System.Collections.Generic;
using HexCore;
namespace ConsoleApp.Maps
{
public interface ISquareMap
{
Cell[,] Map { get; }
Cell StartingCell { get; }
Cell LastCell { get; }
List<GlobalDirection> PossibleMoves(ICell currentCell);
Cell GetCell(int x, int y);
int Height { get; }
int Width { get; }
}
}