C# Class AStarCollisionMap.Pathfinding.PathfindingNodeProcessor

Show file Open project: Wotuu/RTS_XNA_v2 Class Usage Examples

Public Methods

Method Description
GetInstance ( ) : PathfindingNodeProcessor
Process ( ) : void

Processes an item in the list

Push ( AStarCollisionMap.Pathfinding.PathfindingNode node ) : void

Pushes a node onto the list.

Remove ( AStarCollisionMap.Pathfinding.PathfindingNode node ) : void

Removes a node from the queue.

Protected Methods

Method Description
PathfindingNodeProcessor ( ) : System

Private Methods

Method Description
FinishedProcessing ( ) : void

Method Details

GetInstance() public static method

public static GetInstance ( ) : PathfindingNodeProcessor
return PathfindingNodeProcessor

PathfindingNodeProcessor() protected method

protected PathfindingNodeProcessor ( ) : System
return System

Process() public method

Processes an item in the list
public Process ( ) : void
return void

Push() public method

Pushes a node onto the list.
public Push ( AStarCollisionMap.Pathfinding.PathfindingNode node ) : void
node AStarCollisionMap.Pathfinding.PathfindingNode The node to push.
return void

Remove() public method

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