UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

28 lines 694 B
export class GridCellActionWriteFilterToLayer extends GridCellAction { /** * * @param {string} layer * @param {CellFilter} filter */ static from(layer: string, filter: CellFilter): GridCellActionWriteFilterToLayer; /** * * @type {CellFilter} */ filter: CellFilter; /** * * @type {string} */ layerId: string; /** * * @type {GridDataLayer} * @private */ private __layer; initialize(data: any, seed: any): void; execute(data: any, x: any, y: any, rotation: any): void; } import { GridCellAction } from "./GridCellAction.js"; //# sourceMappingURL=GridCellActionWriteFilterToLayer.d.ts.map