Implement Godot UX scene scaffold

This commit is contained in:
2026-05-12 21:06:48 +02:00
parent 8cf554574b
commit 33859d2cf6
74 changed files with 1060 additions and 8 deletions

View File

@@ -0,0 +1,6 @@
namespace ReactorMaintenance.Godot.Data;
public sealed record CampaignManifest
{
public IReadOnlyList<CampaignLevel> Levels { get; init; } = Array.Empty<CampaignLevel>();
}