From 553e15122212aa9e593f4f0d7525b407a2b8e61d Mon Sep 17 00:00:00 2001 From: Tom Ball Date: Tue, 26 Sep 2023 19:54:44 -0700 Subject: [PATCH] move to top level --- scene.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scene.ts b/scene.ts index b4682484..aab3495c 100644 --- a/scene.ts +++ b/scene.ts @@ -153,15 +153,15 @@ namespace microcode { return undefined } } +} - // this is needed for compat with most recent version of arcade - namespace game { - export function addScenePushHandler(handler: (oldScene: any) => void) { +// this is needed for compat with most recent version of arcade +namespace game { + export function addScenePushHandler(handler: (oldScene: any) => void) { - } + } - export function addScenePopHandler(handler: (oldScene: any) => void) { + export function addScenePopHandler(handler: (oldScene: any) => void) { - } } }