AStartTest.AStar.GetDistanceToGoal C# (CSharp) Méthode

GetDistanceToGoal() private méthode

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