using Content.Shared.Inventory;
namespace Content.Server.Atmos.Components
{
///
/// Used in internals as breath tool.
///
[RegisterComponent]
[ComponentProtoName("BreathMask")]
public sealed class BreathToolComponent : Component
{
///
/// Tool is functional only in allowed slots
///
[DataField("allowedSlots")]
public SlotFlags AllowedSlots = SlotFlags.MASK;
public bool IsFunctional;
public EntityUid? ConnectedInternalsEntity;
}
}