8 lines
109 B
C#
8 lines
109 B
C#
namespace PathFinding
|
|
{
|
|
interface IPlanarCollection<T>
|
|
{
|
|
T this[int x, int y] { get; set; }
|
|
}
|
|
}
|