mirror of
https://github.com/danbulant/programovani-kostky
synced 2026-06-10 01:50:07 +00:00
6 lines
96 B
GDScript
6 lines
96 B
GDScript
extends Control
|
|
|
|
signal start_pressed
|
|
|
|
func _on_button_pressed() -> void:
|
|
start_pressed.emit()
|