diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-15 19:00:30 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-15 19:00:30 -0600 |
commit | d41af623741dd3a60ddfb79e94fc00b60308ee06 (patch) | |
tree | 2934080d0657008cee1b7acb8f29efaa2f55529b /scenes/main.gd | |
parent | 7a468e63650bd5f10e8402f416ea988883844f89 (diff) |
Create microgame spawn timer
Diffstat (limited to 'scenes/main.gd')
-rw-r--r-- | scenes/main.gd | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scenes/main.gd b/scenes/main.gd new file mode 100644 index 0000000..572ab25 --- /dev/null +++ b/scenes/main.gd @@ -0,0 +1,15 @@ +extends Node2D + + +# Called when the node enters the scene tree for the first time. +func _ready() -> void: + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func _process(delta: float) -> void: + pass + + +func _on_microgame_spawn_timer_timeout() -> void: + print("WAAAHAHAHA MICROGAMES") |