@robotlegsjs/phaser
Version:
RobotlegsJS integration with Phaser Scene Manager
18 lines (17 loc) • 530 B
TypeScript
import { IContext, IExtension } from "@robotlegsjs/core";
/**
* <p>This Extension waits for a ContextSceneManager to be added as a configuration
* and maps it into the context's injector.</p>
*
* <p>It should be installed before context initialization.</p>
*/
export declare class ContextSceneManagerExtension implements IExtension {
private _injector;
private _logger;
/**
* @inheritDoc
*/
extend(context: IContext): void;
private _handleContextSceneManager;
private _beforeInitializing;
}