UNPKG

starling-framework

Version:

A fast, productive library for 2D cross-platform development.

15 lines (13 loc) 514 B
import ArgumentError from "openfl/errors/ArgumentError"; declare namespace 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. */ export class VertexDataAttribute { /** Creates a new instance with the given properties. */ public constructor(name:string, format:string, offset:number); } } export default starling.rendering.VertexDataAttribute;