@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
22 lines • 515 B
TypeScript
export class GridCellAction {
/**
*
* @param {GridData} data
* @param {number} x
* @param {number} y
* @param {number} rotation
*/
execute(data: GridData, x: number, y: number, rotation: number): void;
/**
*
* @param {GridData} data
* @param {number} seed
*/
initialize(data: GridData, seed: number): void;
/**
* @readonly
* @type {boolean}
*/
readonly isGridCellAction: boolean;
}
//# sourceMappingURL=GridCellAction.d.ts.map