Code smells

This commit is contained in:
2021-03-04 20:35:23 -06:00
parent e64f75e3cc
commit 7ed771d467
31 changed files with 310 additions and 339 deletions

View File

@@ -2,7 +2,7 @@
namespace PathFinding
{
public interface IPlanarCollection<T> : IEnumerable<T>
public interface IPlanarCollection<T> : IEnumerable<T> where T : IPlanarElement
{
T this[float x, float y] { get; set; }
int GetLength(int dimension);