12 lines
327 B
C#
12 lines
327 B
C#
using Content.Server.Storage.EntitySystems;
|
|
using Content.Shared.Storage;
|
|
|
|
namespace Content.Server.Storage.Components
|
|
{
|
|
[RegisterComponent, Access(typeof(StorageSystem))]
|
|
public sealed class StorageFillComponent : Component
|
|
{
|
|
[DataField("contents")] public List<EntitySpawnEntry> Contents = new();
|
|
}
|
|
}
|