2022-07-29 14:13:12 +12:00
|
|
|
using Robust.Shared.Audio;
|
2022-04-16 05:31:12 +00:00
|
|
|
|
|
|
|
|
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!;
|
|
|
|
|
}
|
|
|
|
|
}
|