Moving files pre-refactor

This commit is contained in:
2025-08-03 21:10:58 -05:00
parent 29ebb68215
commit e0dd14c460
527 changed files with 3337 additions and 3093 deletions

10
ui/pause/PauseSettings.gd Normal file
View File

@@ -0,0 +1,10 @@
class_name PauseSettings extends Control
func open() -> void:
visible = true
func close() -> void:
visible = false
func isOpen() -> bool:
return visible