@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
21 lines • 660 B
TypeScript
export class CellMatcherContainsMarkerWithinRadius extends CellMatcher {
/**
*
* @param {MarkerNodeMatcher} matcher
* @param {number} radius
* @returns {CellMatcherContainsMarkerWithinRadius}
*/
static from(matcher: MarkerNodeMatcher, radius: number): CellMatcherContainsMarkerWithinRadius;
/**
* @type {MarkerNodeMatcher}
*/
matcher: MarkerNodeMatcher;
/**
* Search radius
* @type {number}
*/
radius: number;
match(grid: any, x: any, y: any, rotation: any): any;
}
import { CellMatcher } from "../CellMatcher.js";
//# sourceMappingURL=CellMatcherContainsMarkerWithinRadius.d.ts.map