@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
20 lines • 553 B
TypeScript
export class CellFilterLiteralFloat extends CellFilter {
/**
*
* @param {number} value
* @returns {CellFilterLiteralFloat}
*/
static from(value: number): CellFilterLiteralFloat;
/**
*
* @type {number}
*/
value: number;
execute(grid: any, x: any, y: any, rotation: any): number;
}
export namespace CellFilterLiteralFloat {
let ONE: CellFilterLiteralFloat;
let ZERO: CellFilterLiteralFloat;
}
import { CellFilter } from "../CellFilter.js";
//# sourceMappingURL=CellFilterLiteralFloat.d.ts.map