@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
17 lines • 328 B
TypeScript
/**
* Used for monitoring progress of the engine startup
*/
export class EngineBootstrapper {
/**
*
* @type {Node}
*/
rootNode: Node;
/**
*
* @param {Engine} engine
* @returns {Promise}
*/
boot(engine: Engine): Promise<any>;
}
//# sourceMappingURL=EngineBootstrapper.d.ts.map