8 lines
79 B
GDScript
8 lines
79 B
GDScript
extends Button
|
|
|
|
func _ready():
|
|
_G.ExitBtn = self
|
|
|
|
func _pressed():
|
|
_G.exit()
|