6
StarHorizon_Public/Content.Server/_Horizon/BluespaceHarvester/BluespaceHarvesterBundleComponent.cs
2026-01-24 12:49:55 +03:00

15 lines
382 B
C#

using Content.Shared.Storage;
namespace Content.Server._Horizon.BluespaceHarvester;
// TODO: Make it not tied to the harvester for mappers and loot in debris and dungeons.
[RegisterComponent]
public sealed partial class BluespaceHarvesterBundleComponent : Component
{
[DataField]
public List<EntitySpawnEntry> Contents = new();
[DataField]
public bool Spawned;
}