Fix CS1573

This commit is contained in:
RoosterDragon
2023-02-20 10:45:58 +00:00
committed by Pavel Penev
parent 63aa34cb35
commit 6c96405ab2
3 changed files with 3 additions and 1 deletions

View File

@@ -162,6 +162,7 @@ namespace OpenRA.Mods.Common.Pathfinder
/// The search can skip some areas of the search space, meaning it has less work to do.
/// </param>
/// <param name="targetPredicate">Determines if the given cell is the target.</param>
/// <param name="recorder">If provided, will record all nodes explored by searches performed.</param>
PathSearch(IPathGraph graph, Func<CPos, int> heuristic, int heuristicWeightPercentage, Func<CPos, bool> targetPredicate, IRecorder recorder)
{
Graph = graph;