UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

15 lines 342 B
export class CellularAutomata { /** * * @type {function(): number} */ random: () => number; /** * * @param {Uint8Array} data * @param {number} width * @param {number} height */ step(data: Uint8Array, width: number, height: number): void; } //# sourceMappingURL=CellularAutomata.d.ts.map