UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

13 lines 304 B
/** * Accept any node */ export class BVHQueryAny extends BVHQuery { /** * @readonly * @type {BVHQueryAny} */ static readonly INSTANCE: BVHQueryAny; evaluate(node: any, tree: any): boolean; } import { BVHQuery } from "./BVHQuery.js"; //# sourceMappingURL=BVHQueryAny.d.ts.map