mirror of
https://github.com/Steffo99/pineapple-surf.git
synced 2024-11-21 23:34:21 +00:00
9 lines
119 B
GDScript
9 lines
119 B
GDScript
extends Control
|
|
|
|
|
|
signal play_pressed()
|
|
|
|
|
|
func play():
|
|
print("Play button was pressed.")
|
|
emit_signal("play_pressed")
|