using Godot; public partial class Main : Node { // Called when the node enters the scene tree for the first time. public override void _Ready() { var mainMenuScene = ResourceLoader.Load("res://Scenes/MainMenu.tscn").Instantiate(); AddChild(mainMenuScene); } }