private void AddToCloseList(PathMap mPoint) { CloseList.Add(mPoint); RemoveFromOpenList(mPoint.cell); }
private void AddToOpenList(PathMap mPoint) { OpenList.Add(mPoint); }