Files
tbd-station-14/Content.Server/AirlockPainter/AirlockPainterComponent.cs
2022-05-13 17:59:03 +10:00

20 lines
485 B
C#

using Content.Shared.Sound;
namespace Content.Server.AirlockPainter
{
[RegisterComponent]
public sealed class AirlockPainterComponent : Component
{
[DataField("spraySound")]
public SoundSpecifier SpraySound = new SoundPathSpecifier("/Audio/Effects/spray2.ogg");
[DataField("sprayTime")]
public float SprayTime = 3.0f;
[DataField("isSpraying")]
public bool IsSpraying = false;
public int Index = default!;
}
}