mirror of
https://github.com/danbulant/programovani-kostky
synced 2026-06-19 06:11:31 +00:00
8 lines
114 B
GDScript
8 lines
114 B
GDScript
extends Control
|
|
|
|
class_name Ui
|
|
|
|
signal roll_pressed
|
|
|
|
func _on_roll_button_pressed() -> void:
|
|
roll_pressed.emit()
|