AStartTest.AStar.GetDistanceToGoal C# (CSharp) Method

GetDistanceToGoal() private method

private GetDistanceToGoal ( Tile &tile ) : float
tile Tile
return float
        private float GetDistanceToGoal(ref Tile tile)
        {
            return GetDistanceBetweenTiles(ref tile, ref goalTile);
        }