15 lines
382 B
C#
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;
|
|
}
|