using System.Collections.Generic; using System.ComponentModel; using HexCore; namespace ConsoleApp.Maps { public interface IMap { public Cell[,] Map { get; } Cell StartingCell { get; } Cell LastCell { get; } public List PossibleMoves(ICell currentCell); Graph HexGraph { get; } } }