Beispiel #1
0
 public abstract int GetNeighbourNodeCount(AStarNode node);
Beispiel #2
0
 public virtual void RecycleNode(AStarNode node)
 {
 }
Beispiel #3
0
 public abstract AStarNode GetNeighbourNode(AStarNode node, int index);
Beispiel #4
0
 protected abstract int CalCostH(AStarNode node);
Beispiel #5
0
 protected abstract int CalCostG(AStarNode prevNode, AStarNode currentNode);
Beispiel #6
0
 protected abstract bool CheckArrived(AStarNode node);