Skip to content

Instantly share code, notes, and snippets.

@martinwells
Created June 25, 2012 19:43
Show Gist options
  • Save martinwells/2990790 to your computer and use it in GitHub Desktop.
Save martinwells/2990790 to your computer and use it in GitHub Desktop.
var list = new gamecore.LinkedList();
list.add(gunship);
var next = list.first();
while( next )
{
next.obj.draw( ... );
next = next.nextLinked;
}
list.remove(gunship);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment