12 lines
290 B
C#
12 lines
290 B
C#
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<PackedScene>("res://Scenes/MainMenu.tscn").Instantiate();
|
|
AddChild(mainMenuScene);
|
|
}
|
|
}
|