UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

18 lines 476 B
export default EntityCreateAction; declare class EntityCreateAction extends Action<any> { constructor(); /** * * @type {number|null} */ entity: number | null; /** * * @type {EntityComponentDataset} */ ecd: EntityComponentDataset; apply(editor: any): Promise<void>; revert(editor: any): Promise<void>; } import { Action } from "../../../src/core/process/undo/Action.js"; //# sourceMappingURL=EntityCreateAction.d.ts.map