AStarXNA.Heuristics.Dijkstra.GetEstimate C# (CSharp) 메소드

GetEstimate() 공개 메소드

public GetEstimate ( Point source, Point destination ) : int
source Point
destination Point
리턴 int
        public int GetEstimate(Point source, Point destination)
        {
            return 0;
        }
Dijkstra