8 lines
149 B
GDScript
8 lines
149 B
GDScript
extends Control
|
|
|
|
|
|
func _on_play_button_pressed() -> void:
|
|
print("Starting game by pressing button...")
|
|
GameManager.start_game()
|
|
self.queue_free()
|