Files
robot_intelligence_final_pr…/ConsoleApp/Maps/Cell.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

19 lines
251 B
C#

using System;
namespace ConsoleApp.Maps
{
public struct Cell : ICell
{
public int X { get; }
public int Y { get; }
public Cell(int x, int y)
{
X = x;
Y = y;
}
}
}