small things

This commit is contained in:
algodoogle
2026-07-27 16:14:13 +01:00
parent 688eca13fa
commit f3abe69eb4
15 changed files with 135 additions and 100 deletions
+13
View File
@@ -0,0 +1,13 @@
extends Control
@onready var _Restart_btn: Button = %Restart
const GAME_MANAGER = preload("res://GameManager.gd")
func _ready() -> void:
_Restart_btn.pressed.connect(_restart)
func _restart():
GAME_MANAGER._restart()
get_tree().reload_current_scene()