using Content.Shared.Whitelist;
namespace Content.Shared.Armor;
///
/// Used on outerclothing to allow use of suit storage
///
[RegisterComponent]
public sealed partial class AllowSuitStorageComponent : Component
{
///
/// Whitelist for what entities are allowed in the suit storage slot.
///
[DataField]
public EntityWhitelist Whitelist = new()
{
Components = new[] {"Item"}
};
}