Example #1
0
 private void AddToClosedList(PathNode currentNode)
 {
     currentNode.isOnClosedList = true;
 }
Example #2
0
 private void RemoveFromOpenList(PathNode currentNode)
 {
     binaryTree.RemoveNode(currentNode);
     openListCount--;
     currentNode.isOnOpenList = false;
 }
Example #3
0
 private void AddToOpenList(PathNode node)
 {
     binaryTree.AddNode(node);
     openListCount++;
     node.isOnOpenList = true;
 }