Add Godot project shell

This commit is contained in:
2026-04-21 18:54:38 +02:00
parent 0d9957fa62
commit 12a2868c9c
17 changed files with 424 additions and 6 deletions

View File

@@ -0,0 +1,23 @@
#nullable enable
using Godot;
namespace SideScrollerGame.Menu;
public partial class MenuPlaceholder : Control
{
public override void _Ready()
{
Label? title = GetNodeOrNull<Label>("Title");
if (title is not null)
{
title.Text = "SideScrollerGame - Menu Placeholder";
}
Label? hint = GetNodeOrNull<Label>("Hint");
if (hint is not null)
{
hint.Text = "Run with -- --debug-boot=smoke for smoke scene";
}
}
}