Packageorg.flixel.system
Classpublic class FlxList
InheritanceFlxList Inheritance Object

A miniature linked list class. Useful for optimizing time-critical or highly repetitive tasks! See FlxQuadTree for how to use it, IF YOU DARE.



Public Properties
 PropertyDefined By
  next : FlxList
Stores a reference to the next link in the list.
FlxList
  object : FlxObject
Stores a reference to a FlxObject.
FlxList
Public Methods
 MethodDefined By
  
Creates a new link, and sets object and next to null.
FlxList
  
destroy():void
Clean up memory.
FlxList
Property Detail
nextproperty
public var next:FlxList

Stores a reference to the next link in the list.

objectproperty 
public var object:FlxObject

Stores a reference to a FlxObject.

Constructor Detail
FlxList()Constructor
public function FlxList()

Creates a new link, and sets object and next to null.

Method Detail
destroy()method
public function destroy():void

Clean up memory.