diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 14:39:02 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 14:39:02 -0600 |
commit | 97864e717954537de25f32e965d4e0ffb3106ec0 (patch) | |
tree | 3f1ddf32de247871dfb356986d758d53490fa5bb /scenes | |
parent | 8e7b7e1fc7ceb49aedfd6d66428f9d3bd6e6f88f (diff) |
Rick roll the player if they click an ad
Diffstat (limited to 'scenes')
-rw-r--r-- | scenes/microgames/ad/ad_window.gd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scenes/microgames/ad/ad_window.gd b/scenes/microgames/ad/ad_window.gd index e397532..3e3fc33 100644 --- a/scenes/microgames/ad/ad_window.gd +++ b/scenes/microgames/ad/ad_window.gd @@ -30,3 +30,7 @@ func _on_close_requested() -> void: super() print("Hmm perchance") win.emit(self) + + +func _on_texture_button_pressed() -> void: + OS.shell_open("https://www.youtube.com/watch?v=dQw4w9WgXcQ") |