mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-27 00:05:37 +00:00
9 lines
275 B
GDScript
Executable file
9 lines
275 B
GDScript
Executable file
extends Control
|
|
|
|
func _ready():
|
|
$MarginContainer/TabContainer/System/ScrollContainer/VBoxContainer/game_control_container/GridContainer/resume.grab_focus() #Required to enable controller focusing
|
|
|
|
func _input(event):
|
|
if event.is_action_pressed("quit"):
|
|
get_tree().quit()
|