Files
robot_intelligence_final_pr…/ConsoleApp/Maps/IMap.cs

9 lines
163 B
C#

using System.Collections.Generic;
namespace ConsoleApp.Maps
{
public interface IMap
{
public List<ICell> PossibleMoves(ICell currentCell);
}
}