UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

20 lines 555 B
/** * Converts {@link CellMatcher} output to 0 or 1 */ export class CellFilterCellMatcher extends CellFilter { /** * * @param {CellMatcher} matcher * @returns {CellFilterCellMatcher} */ static from(matcher: CellMatcher): CellFilterCellMatcher; /** * * @type {CellMatcher} */ matcher: CellMatcher; initialize(grid: any, seed: any): void; execute(grid: any, x: any, y: any, rotation: any): 0 | 1; } import { CellFilter } from "./CellFilter.js"; //# sourceMappingURL=CellFilterCellMatcher.d.ts.map