Files
OldThink/Content.Server/AirlockPainter/AirlockPainterComponent.cs
2022-04-16 15:31:12 +10:00

23 lines
591 B
C#

using Content.Server.UserInterface;
using Content.Shared.AirlockPainter;
using Content.Shared.Sound;
using Robust.Server.GameObjects;
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!;
}
}