mirror of
https://github.com/Relintai/broken_seals_2ds.git
synced 2024-11-22 03:07:17 +01:00
9 lines
132 B
GDScript
9 lines
132 B
GDScript
extends Button
|
|
|
|
func _ready():
|
|
if OS.has_feature("mobile") || OS.has_feature("web"):
|
|
hide()
|
|
|
|
func _pressed():
|
|
get_tree().quit()
|