@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
20 lines (16 loc) • 366 B
JavaScript
import { seededRandom } from "../../core/math/random/seededRandom.js";
export class CellularAutomata {
/**
*
* @type {function(): number}
*/
random = seededRandom(1);
/**
*
* @param {Uint8Array} data
* @param {number} width
* @param {number} height
*/
step(data, width, height) {
}
}