/** * Stores information about Array tweens.

* * Copyright 2011, GreenSock. All rights reserved. This work is subject to the terms in http://www.greensock.com/terms_of_use.html or for corporate Club GreenSock members, the software agreement that was issued with the corporate membership. * * @author Jack Doyle, jack@greensock.com */ class com.greensock.plugins.helpers.ArrayTweenInfo { public var index:Number; public var start:Number; public var change:Number; public function ArrayTweenInfo(index:Number, start:Number, change:Number) { this.index = index; this.start = start; this.change = change; } }