@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
17 lines • 608 B
TypeScript
export class ContinuousGridCellActionSetTerrainObstacle extends ContinuousGridCellAction {
/**
*
* @type {GridObstacle}
*/
obstacle: GridObstacle;
/**
*
* @type {CellFilter}
*/
threshold: CellFilter;
initialize(seed: any, ecd: any, grid: any): void;
execute(ecd: any, grid: any, x: any, y: any, rotation: any, strength: any): void;
}
import { ContinuousGridCellAction } from "./ContinuousGridCellAction.js";
import GridObstacle from "../../../engine/grid/obstacle/GridObstacle.js";
//# sourceMappingURL=ContinuousGridCellActionSetTerrainObstacle.d.ts.map