Files
robot_intelligence_final_pr…/ConsoleApp/Maps/IMap.cs
2020-12-10 20:07:23 -07:00

9 lines
146 B
C#

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