UNPKG

@robotlegsjs/phaser

Version:

RobotlegsJS integration with Phaser Scene Manager

23 lines (22 loc) 726 B
import { IConfig } from "@robotlegsjs/core"; import { IContextSceneManager } from "../api/IContextSceneManager"; /** * The Context SceneManager represents the Phaser.Scenes.SceneManager for a Context */ export declare class ContextSceneManager implements IContextSceneManager, IConfig { private _sceneManager; /** * The root Phaser.Scenes.SceneManager for this Context */ get sceneManager(): Phaser.Scenes.SceneManager; /** * The SceneManager represents the root Phaser.Scenes.SceneManager for a Context * * @param sceneManager The root Scene Manager for this Context */ constructor(sceneManager: Phaser.Scenes.SceneManager); /** * */ configure(): void; }