Example #1
0
 private void AddToCloseList(PathMap mPoint)
 {
     CloseList.Add(mPoint);
     RemoveFromOpenList(mPoint.cell);
 }
Example #2
0
 private void AddToOpenList(PathMap mPoint)
 {
     OpenList.Add(mPoint);
 }