@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
20 lines • 580 B
TypeScript
/**
* Wrapper around multiple actions
*/
export class GridCellActionSequence extends GridCellAction {
/**
*
* @param {GridCellAction[]} sequence
* @returns {GridCellActionSequence}
*/
static from(sequence: GridCellAction[]): GridCellActionSequence;
/**
*
* @type {GridCellAction[]}
*/
elements: GridCellAction[];
initialize(data: any, seed: any): void;
execute(data: any, x: any, y: any, rotation: any): void;
}
import { GridCellAction } from "../GridCellAction.js";
//# sourceMappingURL=GridCellActionSequence.d.ts.map