11 lines
232 B
C#
11 lines
232 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PathFinding
|
|
{
|
|
public interface IPlanarCollection<T> : IEnumerable<T> where T : IPlanarElement
|
|
{
|
|
T? this[float x, float y] { get; set; }
|
|
int GetLength(int dimension);
|
|
}
|
|
}
|