Refactor runtime bootstrap and ship control flows

This commit is contained in:
2026-04-03 01:12:26 -04:00
parent 0bb72bee35
commit 706e1cda8f
129 changed files with 9588 additions and 3548 deletions

View File

@@ -0,0 +1,19 @@
namespace SpaceGame.Api.Ships.Contracts;
public sealed record ShipBehaviorDefinitionSnapshot(
string Id,
string Label,
string Category,
string SupportStatus,
string Notes);
public sealed record ShipOrderDefinitionSnapshot(
string Id,
string Label,
string Category,
string SupportStatus,
string Notes);
public sealed record ShipAutomationCatalogSnapshot(
IReadOnlyList<ShipBehaviorDefinitionSnapshot> Behaviors,
IReadOnlyList<ShipOrderDefinitionSnapshot> Orders);