Skip to content

Instantly share code, notes, and snippets.

@krisives
Created March 2, 2015 02:50
Show Gist options
  • Save krisives/6807ec0c6f4c8351d740 to your computer and use it in GitHub Desktop.
Save krisives/6807ec0c6f4c8351d740 to your computer and use it in GitHub Desktop.
private Pos NextPathNode(LinkedList<Pos> open, Pos goal)
{
Pos pos = open.First.Value;
open.RemoveFirst();
return pos;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment