using Robust.Shared.GameStates;
namespace Content.Shared.Containers.ItemSlots;
///
/// Updates the relevant ItemSlots locks based on
///
[RegisterComponent, NetworkedComponent]
public sealed partial class ItemSlotsLockComponent : Component
{
[DataField(required: true)]
public List Slots = new();
}