@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
14 lines • 521 B
TypeScript
export class GridCellActionDebugBreak extends GridCellAction {
static from({ condition }: {
condition?: typeof returnTrue;
}): GridCellActionDebugBreak;
/**
*
* @type {function():boolean}
*/
condition: () => boolean;
execute(data: any, x: any, y: any, rotation: any): void;
}
import { GridCellAction } from "../../../placement/action/GridCellAction.js";
import { returnTrue } from "../../../../core/function/returnTrue.js";
//# sourceMappingURL=GridCellActionDebugBreak.d.ts.map