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

8 lines
128 B
C#

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