using System.Collections.Generic; using Roy_T.AStar.Primitives; namespace Roy_T.AStar.Graphs { public interface INode { Position Position { get; } IList Incoming { get; } IList Outgoing { get; } } }