Files
Dawn-Godot/scripts/Scenes/RootScene.gd
2025-05-05 19:27:19 -05:00

11 lines
313 B
GDScript

class_name RootScene extends Node3D
const Systems = preload("res://scripts/System/Systems.gd");
const SceneSystem = preload("res://scripts/System/SceneSystem.gd");
var systems:Systems;
func _ready() -> void:
print("Game started");
systems = $Systems;
systems.SCENE.setScene(SceneSystem.DawnScene.MAIN_MENU);