Maps are more generic as well as cells.

This commit is contained in:
2020-12-10 20:34:45 -07:00
parent 7f0cb10198
commit d725372ffb
14 changed files with 121 additions and 94 deletions

View File

@@ -2,7 +2,7 @@ namespace ConsoleApp.Maps
{
public interface ISquareCell : ICell
{
int X { get; }
int Y { get; }
new int X { get; }
new int Y { get; }
}
}