Begin UI refactor

This commit is contained in:
2026-01-09 20:52:47 -06:00
parent e7f55fd731
commit bcf5249067
16 changed files with 92 additions and 50 deletions

15
ui/UISingleton.gd Normal file
View File

@@ -0,0 +1,15 @@
extends Node
var rootUi:RootUI = null
var DEBUG_MENU:
get():
if rootUi && rootUi.debugMenu:
return rootUi.debugMenu
return null
var TEXTBOX:
get():
if rootUi && rootUi.textBox:
return rootUi.textBox
return null