mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-22 23:17:26 -04:00
9 lines
182 B
GDScript
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)
|