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