Added keyboard control to main menu. Reworked logic

This commit is contained in:
2025-10-19 19:15:03 +03:00
parent 83b14d31cd
commit e09303f1b8
12 changed files with 349 additions and 84 deletions
+12
View File
@@ -1 +1,13 @@
class_name Passage
extends Node2D
var _paused : bool = false
func set_paused(paused: bool) -> void:
_paused = paused
func is_paused() -> bool:
return _paused