UNPKG

@robotlegsjs/phaser

Version:

RobotlegsJS integration with Phaser Scene Manager

26 lines (25 loc) 603 B
import { Event } from "@robotlegsjs/core"; /** * View Configuration Event * * @private */ export declare class ConfigureViewEvent extends Event { static CONFIGURE_VIEW: string; private _view; /** * The view instance associated with this event */ get view(): Phaser.GameObjects.Container; /** * Creates a view configuration event * * @param type The event type * @param view The associated view instance */ constructor(type: string, view?: Phaser.GameObjects.Container); /** * @inheritDoc */ clone(): ConfigureViewEvent; }