Files
crystall-punk-14/Content.Shared/Containers/EntityTableContainerFillComponent.cs

14 lines
440 B
C#
Raw Normal View History

using Content.Shared.EntityTable.EntitySelectors;
namespace Content.Shared.Containers;
/// <summary>
/// Version of <see cref="ContainerFillComponent"/> that utilizes <see cref="EntityTableSelector"/>
/// </summary>
[RegisterComponent, Access(typeof(ContainerFillSystem))]
public sealed partial class EntityTableContainerFillComponent : Component
{
[DataField]
public Dictionary<string, EntityTableSelector> Containers = new();
}