mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
9 lines
132 B
GDScript3
9 lines
132 B
GDScript3
|
extends Button
|
||
|
|
||
|
func _ready():
|
||
|
if OS.has_feature("mobile") || OS.has_feature("web"):
|
||
|
hide()
|
||
|
|
||
|
func _pressed():
|
||
|
get_tree().quit()
|