Bit more cleanup

This commit is contained in:
2025-05-06 16:21:22 -05:00
parent 85a7ed99bf
commit 0dfb9743f6
51 changed files with 15 additions and 41 deletions

10
scripts/Singleton/VN.gd Normal file
View File

@@ -0,0 +1,10 @@
class_name VNSystem extends Node
const VNTextbox = preload("res://scripts/UI/VNTextbox.gd")
var vnTextbox:VNTextbox = null
func _ready() -> void:
vnTextbox = $SubsceneUI/VNTextbox
func getTextbox() -> VNTextbox:
return vnTextbox