Remove legacy A* visualisation.

This commit is contained in:
Paul Chote
2016-08-25 19:45:18 +01:00
parent b3c4ecd7c5
commit 32eb98c17d
13 changed files with 12 additions and 152 deletions

View File

@@ -27,8 +27,6 @@ namespace OpenRA.Mods.Common.Pathfinder
/// </summary>
IEnumerable<Pair<CPos, int>> Considered { get; }
bool Debug { get; set; }
Player Owner { get; }
int MaxCost { get; }
@@ -86,7 +84,6 @@ namespace OpenRA.Mods.Common.Pathfinder
Graph = graph;
OpenQueue = new PriorityQueue<GraphConnection>(GraphConnection.ConnectionCostComparer);
StartPoints = new PriorityQueue<GraphConnection>(GraphConnection.ConnectionCostComparer);
Debug = false;
MaxCost = 0;
}