UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

17 lines 496 B
export class CellMatcherFromFilter extends CellMatcher { /** * * @param {CellFilter} f * @returns {CellMatcherFromFilter} */ static from(f: CellFilter): CellMatcherFromFilter; /** * * @type {CellFilter|null} */ filter: CellFilter | null; initialize(grid: any, seed: any): void; match(grid: any, x: any, y: any, rotation: any): boolean; } import { CellMatcher } from "./CellMatcher.js"; //# sourceMappingURL=CellMatcherFromFilter.d.ts.map