Files
tbd-station-14/Content.Server/Storage/Components/StorageFillComponent.cs
2022-02-08 19:42:49 +11:00

15 lines
449 B
C#

using System.Collections.Generic;
using Content.Server.Storage.EntitySystems;
using Robust.Shared.Analyzers;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Server.Storage.Components
{
[RegisterComponent, Friend(typeof(StorageSystem))]
public sealed class StorageFillComponent : Component
{
[DataField("contents")] public List<EntitySpawnEntry> Contents = new();
}
}