class_name Systems extends Node const ItemSystem = preload("res://scripts/Systems/ItemSystem.gd"); const CutsceneSystem = preload("res://scripts/Systems/CutsceneSystem.gd") var ITEM:ItemSystem; var CUTSCENE:CutsceneSystem; func _ready(): ITEM = $Item; CUTSCENE = $Cutscene; pass func _process(delta): pass