summaryrefslogtreecommitdiff
path: root/scenes
diff options
context:
space:
mode:
authorZoey Kitt <zoey.kitt@outlook.com>2024-11-15 19:04:54 -0600
committerZoey Kitt <zoey.kitt@outlook.com>2024-11-15 19:04:54 -0600
commit57014a6756f8bfcff7a45387f7e8bb44afdb6e5a (patch)
treeca0ffde3ff53cd19495077035b6c3429cb02581e /scenes
parentd41af623741dd3a60ddfb79e94fc00b60308ee06 (diff)
Spawn a window when the microgame timer goes off
Diffstat (limited to 'scenes')
-rw-r--r--scenes/main.gd3
1 files changed, 3 insertions, 0 deletions
diff --git a/scenes/main.gd b/scenes/main.gd
index 572ab25..d11845c 100644
--- a/scenes/main.gd
+++ b/scenes/main.gd
@@ -13,3 +13,6 @@ func _process(delta: float) -> void:
func _on_microgame_spawn_timer_timeout() -> void:
print("WAAAHAHAHA MICROGAMES")
+
+ var window = Window.new()
+ add_child(window)