UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

15 lines 416 B
export class ArrayIteratorRandom extends AbstractArrayIterator<any> { constructor(); __i: number; __sequence: any[]; __random: () => number; /** * * @param {number} v */ setSeed(v: number): void; initialize(data: any): void; next(result: any): void; } import { AbstractArrayIterator } from "./AbstractArrayIterator.js"; //# sourceMappingURL=ArrayIteratorRandom.d.ts.map