diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-15 19:53:02 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-15 19:53:02 -0600 |
commit | 56377b3afac7d5809738c6016981c5153a20f2b3 (patch) | |
tree | f160b73658f0d2cb722e554fe10d45949257c8e3 /scenes/microgames/ad_window.gd | |
parent | b62bbaac0dd22ba130832292f9248de2e9aa4662 (diff) |
Make derived window class for the ad microgame
Diffstat (limited to 'scenes/microgames/ad_window.gd')
-rw-r--r-- | scenes/microgames/ad_window.gd | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/scenes/microgames/ad_window.gd b/scenes/microgames/ad_window.gd new file mode 100644 index 0000000..516af44 --- /dev/null +++ b/scenes/microgames/ad_window.gd @@ -0,0 +1,19 @@ +extends "res://scenes/microgames/microgame_window.gd" + + +## A simple microgame that you win by closing the window + + +# 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_close_requested() -> void: + super() + print("Hmm perchance") |