Files
robot_intelligence_final_pr…/ConsoleApp/Maps/ICell.cs
Brady Bodily 257aaa331f Done for the night
Need to change planning algo for square to go right to left.
2020-12-15 00:09:29 -07:00

8 lines
114 B
C#

namespace ConsoleApp.Maps
{
public interface ICell
{
int X { get; }
int Y { get; }
}
}