using System.Collections.Generic; namespace PathFinding { public interface IPlanarElement { ICollection GetPaths(); bool IsUpsideDown { get; } } }