thegates/app/scripts/resources/app_events.gd
2025-08-19 02:38:20 +07:00

9 lines
182 B
GDScript

extends Resource
class_name AppEvents
signal open_link(url: String)
func open_link_emit(url: String) -> void:
OS.shell_open(url) # TODO: move somewhere else
open_link.emit(url)