11 lines
237 B
GDScript
11 lines
237 B
GDScript
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
|