8 lines
90 B
GDScript
8 lines
90 B
GDScript
extends Control
|
|
|
|
signal start_game;
|
|
|
|
func _on_start_pressed():
|
|
start_game.emit()
|
|
hide()
|