2023-07-30 00:22:03 -07:00
|
|
|
using Godot;
|
|
|
|
|
using System;
|
2023-09-30 15:58:08 -07:00
|
|
|
using WacK.MusicDB;
|
2023-07-30 00:22:03 -07:00
|
|
|
|
|
|
|
|
namespace WacK.Scenes
|
|
|
|
|
{
|
|
|
|
|
public partial class Startup : Node
|
|
|
|
|
{
|
|
|
|
|
// Called when the node enters the scene tree for the first time.
|
|
|
|
|
public override void _Ready()
|
|
|
|
|
{
|
2023-09-30 15:58:08 -07:00
|
|
|
Database.Init();
|
2023-07-30 00:22:03 -07:00
|
|
|
|
|
|
|
|
// Change scenes
|
|
|
|
|
GetTree().ChangeSceneToFile("res://Scenes/DebugChartLoader.tscn");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|