@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
24 lines • 559 B
TypeScript
export class LineSetDescription {
/**
*
* @type {string}
*/
id: string;
/**
*
* @type {LineDescription[]}
*/
lines: LineDescription[];
/**
*
* @type {LineSetDescription[]}
*/
sets: LineSetDescription[];
/**
* Collect all lines from this set recursively
* @param {LineDescription[]} destination
* @param {number} [destinationOffset]
*/
collect(destination: LineDescription[], destinationOffset?: number): number;
}
//# sourceMappingURL=LineSetDescription.d.ts.map