From 56377b3afac7d5809738c6016981c5153a20f2b3 Mon Sep 17 00:00:00 2001 From: Zoey Kitt Date: Fri, 15 Nov 2024 19:53:02 -0600 Subject: Make derived window class for the ad microgame --- scenes/microgames/ad_window.gd | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 scenes/microgames/ad_window.gd (limited to 'scenes/microgames/ad_window.gd') 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") -- cgit v1.2.3