UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines 424 B
/** * * @param {Engine} engine * @param {function(Editor):*} [initialization] * @returns {{enable:function, disable: function, toggle: function, editor: Editor}} */ export function enableEditor(engine: Engine, initialization?: (arg0: Editor) => any): { enable: Function; disable: Function; toggle: Function; editor: Editor; }; import Editor from "./Editor.js"; //# sourceMappingURL=enableEditor.d.ts.map