/**
* Stores information about ThrowPropsPlugin 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.ThrowProp {
public var property:String;
public var start:Number;
public var change1:Number;
public var change2:Number;
public function ThrowProp(property:String, start:Number, change1:Number, change2:Number) {
this.property = property;
this.start = start;
this.change1 = change1;
this.change2 = change2;
}
}