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