13 lines
173 B
C#
13 lines
173 B
C#
|
|
using System.Collections.Generic;
|
|
|
|
namespace PathFinding
|
|
{
|
|
public interface IPlanarElement
|
|
{
|
|
ICollection<Path> GetPaths();
|
|
|
|
bool IsUpsideDown { get; }
|
|
}
|
|
}
|