backing up

This commit is contained in:
2020-12-10 20:07:23 -07:00
parent 927fd0f64d
commit 63f158afd9
18 changed files with 268 additions and 77 deletions

View File

@@ -1,7 +1,14 @@
namespace ConsoleApp.Maps
{
public class SquareCell
public struct SquareCell : ISquareCell
{
public int X { get; }
public int Y { get; }
public SquareCell(int x, int y)
{
X = x;
Y = y;
}
}
}