Files
OldThink/Content.Shared/_White/Keyhole/Components/KeyFormComponent.cs
2024-02-23 22:10:38 +03:00

16 lines
416 B
C#

using Robust.Shared.Audio;
namespace Content.Shared._White.Keyhole.Components;
[RegisterComponent]
public sealed partial class KeyformComponent : KeyBaseComponent
{
[ViewVariables(VVAccess.ReadWrite)]
[DataField]
public bool IsUsed;
[ViewVariables(VVAccess.ReadWrite)]
[DataField]
public SoundSpecifier PressSound = new SoundPathSpecifier("/Audio/White/Object/Tools/Form/press.ogg");
}