diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-15 19:04:54 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-15 19:04:54 -0600 |
commit | 57014a6756f8bfcff7a45387f7e8bb44afdb6e5a (patch) | |
tree | ca0ffde3ff53cd19495077035b6c3429cb02581e | |
parent | d41af623741dd3a60ddfb79e94fc00b60308ee06 (diff) |
Spawn a window when the microgame timer goes off
-rw-r--r-- | scenes/main.gd | 3 |
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) |