@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
12 lines • 415 B
TypeScript
export class CellMatcherOr extends CellMatcherBinary {
/**
*
* @param {CellMatcher} left
* @param {CellMatcher} right
* @returns {CellMatcherOr}
*/
static from(left: CellMatcher, right: CellMatcher): CellMatcherOr;
match(data: any, x: any, y: any, rotation: any): boolean;
}
import { CellMatcherBinary } from "./CellMatcherBinary.js";
//# sourceMappingURL=CellMatcherOr.d.ts.map