UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

12 lines 419 B
export class CellMatcherAnd extends CellMatcherBinary { /** * * @param {CellMatcher} left * @param {CellMatcher} right * @returns {CellMatcherAnd} */ static from(left: CellMatcher, right: CellMatcher): CellMatcherAnd; match(grid: any, x: any, y: any, rotation: any): boolean; } import { CellMatcherBinary } from "./CellMatcherBinary.js"; //# sourceMappingURL=CellMatcherAnd.d.ts.map