Consistent SYSTEMS
This commit is contained in:
10
scripts/Singleton/VNSystem.gd
Normal file
10
scripts/Singleton/VNSystem.gd
Normal 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 = UI.get_node("VNTextbox")
|
||||
|
||||
func getTextbox() -> VNTextbox:
|
||||
return vnTextbox
|
Reference in New Issue
Block a user