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

14 lines
243 B
C#

namespace ConsoleApp.Maps
{
public struct SquareCell : ISquareCell
{
public int X { get; }
public int Y { get; }
public SquareCell(int x, int y)
{
X = x;
Y = y;
}
}
}