import { Game } from '../Game';
import { IEventInstance } from '../events/IEventInstance';
export interface IScene {
    key?: string;
    game: Game;
    events: Map<string, Set<IEventInstance>>;
    update?(delta: number, time: number): void;
    shutdown?(): void;
    destroy?(): void;
}
//# sourceMappingURL=IScene.d.ts.map