Files
2023-09-30 15:58:08 -07:00

19 lines
336 B
C#

using Godot;
using System;
using WacK.MusicDB;
namespace WacK.Scenes
{
public partial class Startup : Node
{
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
Database.Init();
// Change scenes
GetTree().ChangeSceneToFile("res://Scenes/DebugChartLoader.tscn");
}
}
}