Singelton patch

This commit is contained in:
2025-05-05 22:21:51 -05:00
parent 43487bb448
commit 631365aa38
46 changed files with 78 additions and 174 deletions

View File

@@ -9,7 +9,7 @@ func _init(
self.text = text;
func start() -> void:
getSystems().VN.getTextbox().setText(self.text);
VN.getTextbox().setText(self.text);
func isDone() -> bool:
return getSystems().VN.getTextbox().isClosed;
return VN.getTextbox().isClosed;