UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

23 lines 619 B
export class CellActionSelectRandom extends GridCellAction { /** * * @param {GridCellAction[]} options * @returns {CellActionSelectRandom} */ static from(options: GridCellAction[]): CellActionSelectRandom; /** * * @type {function} * @private */ private __random; /** * * @type {GridCellAction[]} */ options: GridCellAction[]; initialize(data: any, seed: any): void; execute(data: any, x: any, y: any, rotation: any): void; } import { GridCellAction } from "../GridCellAction.js"; //# sourceMappingURL=CellActionSelectRandom.d.ts.map