mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-21 15:44:23 +00:00
16 lines
324 B
GDScript
16 lines
324 B
GDScript
extends Control
|
|
class_name MainMenu
|
|
|
|
|
|
## Emitted when the player has clicked on the Play button.
|
|
signal selected_play
|
|
|
|
## Emitted when the player has clicked on the Options button.
|
|
signal selected_options
|
|
|
|
|
|
func _on_play_pressed() -> void:
|
|
selected_play.emit()
|
|
|
|
func _on_options_pressed() -> void:
|
|
selected_options.emit()
|