Files
tbd-station-14/Content.Server/Atmos/Components/BreathToolComponent.cs
2022-07-25 14:42:25 +10:00

21 lines
568 B
C#

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