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