UNPKG

phaser-jsx

Version:
12 lines (8 loc) 202 B
import type { Scene } from 'phaser'; let _scene: Scene; export function getScene<Type = Scene>(): Type { return _scene as Type; } export function setScene(scene: Scene): void { _scene = scene; }