mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-25 07:25:38 +00:00
12 lines
389 B
GDScript
12 lines
389 B
GDScript
extends MarginContainer
|
|
|
|
var button_swap: Array
|
|
|
|
func _ready():
|
|
_connect_signals()
|
|
|
|
func _connect_signals():
|
|
%quick_resume_button.pressed.connect(class_functions.run_function.bind(%quick_resume_button))
|
|
%button_swap_button.pressed.connect(class_functions.run_function.bind(%button_swap_button))
|
|
%widescreen_button.pressed.connect(class_functions.run_function.bind(%widescreen_button))
|