Files
robot_intelligence_final_pr…/ConsoleApp/Maps/ISquareCell.cs

8 lines
136 B
C#

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