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