1
0

EntityTableContainerFillComponent.cs 440 B

12345678910111213
  1. using Content.Shared.EntityTable.EntitySelectors;
  2. namespace Content.Shared.Containers;
  3. /// <summary>
  4. /// Version of <see cref="ContainerFillComponent"/> that utilizes <see cref="EntityTableSelector"/>
  5. /// </summary>
  6. [RegisterComponent, Access(typeof(ContainerFillSystem))]
  7. public sealed partial class EntityTableContainerFillComponent : Component
  8. {
  9. [DataField]
  10. public Dictionary<string, EntityTableSelector> Containers = new();
  11. }