OpenSim.Modules.PathFinding/src/A/Graphs/INode.cs

13 lines
253 B
C#

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