Packageorg.flixel.data
Classpublic class FlxList

The world's smallest 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
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.