AStarCollisionMap.Pathfinding.PathfindingNodeProcessor.Remove C# (CSharp) Method

Remove() public method

Removes a node from the queue.
public Remove ( AStarCollisionMap.Pathfinding.PathfindingNode node ) : void
node AStarCollisionMap.Pathfinding.PathfindingNode
return void
        public void Remove(PathfindingNode node)
        {
            toProcess.Remove(node);
        }