UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

30 lines 698 B
export class ProcessEngine extends EditorProcess { /** * @type {List.<EditorProcess>} */ processes: List<EditorProcess>; __suspendedList: List<any>; /** * * @param {EditorProcess} process */ add(process: EditorProcess): void; /** * @private * @param {EditorProcess} process */ private startProcess; /** * * @param {string} name */ startByName(name: string): void; /** * * @param {string} name */ stopByName(name: string): void; } import { EditorProcess } from "./EditorProcess.js"; import List from "../../src/core/collection/list/List.js"; //# sourceMappingURL=ProcessEngine.d.ts.map