mirror of
https://github.com/Relintai/broken_seals_2d.git
synced 2024-11-11 20:35:10 +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()
|