mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-18 15:55:10 +00:00
8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
|
import type BattleScene from "#app/battle-scene";
|
||
|
|
||
|
export let globalScene: BattleScene;
|
||
|
|
||
|
export function initGlobalScene(scene: BattleScene): void {
|
||
|
globalScene = scene;
|
||
|
}
|