extends SceneTree func _initialize(): var t = load("res://src/game/game_controller.gd") if t: print("GameController loaded: ", t) else: print("FAIL: GameController not found") var tc = load("res://src/game/training_controller.gd") if tc: print("TrainingController loaded: ", tc) else: print("FAIL: TrainingController not found") quit()