[More whitespace fixes]

This commit is contained in:
Bob
2009-11-19 15:18:13 +13:00
parent a17296ff8a
commit c0fe3fa4c9
14 changed files with 90 additions and 122 deletions

View File

@@ -57,8 +57,8 @@ namespace OpenRa.Game
continue;
if (customBlock != null && customBlock(newHere))
continue;
var est = heuristic( newHere );
if( est == float.PositiveInfinity )
continue;
@@ -84,12 +84,12 @@ namespace OpenRa.Game
queue.Add( new PathDistance( heuristic( location ), location ) );
}
public static PathSearch FromPoint( int2 from, int2 target, UnitMovementType umt, bool checkForBlocked )
{
var search = new PathSearch {