mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-23 17:17:31 -04:00
14 lines
218 B
GDScript
14 lines
218 B
GDScript
extends RoundButton
|
|
|
|
@export var url: String
|
|
@export var app_events: AppEvents
|
|
|
|
|
|
func _ready() -> void:
|
|
super._ready()
|
|
|
|
pressed.connect(open_help_url)
|
|
|
|
|
|
func open_help_url() -> void:
|
|
app_events.open_link_emit(url)
|