21 lines
568 B
C#
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;
|
|
}
|
|
}
|