package starling.rendering {
/**
 *  Holds the properties of a single attribute in a VertexDataFormat instance.
 *  *  The member variables must never be changed; they are only <code>public</code>
 *  *  for performance reasons. 
 * @externs
 */
public class VertexDataAttribute {
	/**
	 *  Creates a new instance with the given properties. 
	 */
	public function VertexDataAttribute(name:String, format:String, offset:int) {}
	public var name:String;
	public var format:String;
	public var isColor:Boolean;
	public var offset:int;
	public var size:int;
}
}
