1
0

StorageFillComponent.cs 385 B

123456789101112
  1. using Content.Shared.Storage.EntitySystems;
  2. using Robust.Shared.GameStates;
  3. namespace Content.Shared.Storage.Components;
  4. // TODO:
  5. // REPLACE THIS WITH CONTAINERFILL
  6. [RegisterComponent, NetworkedComponent, Access(typeof(SharedStorageSystem))]
  7. public sealed partial class StorageFillComponent : Component
  8. {
  9. [DataField("contents")] public List<EntitySpawnEntry> Contents = new();
  10. }