Added pricegun sound (#34119)

added pricegun sound

Co-authored-by: dylanhunter <dylan2.whittingham@live.uwe.ac.uk>
This commit is contained in:
Dylan Hunter Whittingham
2025-01-02 16:46:13 +00:00
committed by GitHub
parent 1a5be80d04
commit 39ee853801
6 changed files with 29 additions and 10 deletions

View File

@@ -1,3 +1,4 @@
using Robust.Shared.Audio;
using Robust.Shared.GameStates;
namespace Content.Shared.Cargo.Components;
@@ -8,4 +9,9 @@ namespace Content.Shared.Cargo.Components;
[RegisterComponent, NetworkedComponent]
public sealed partial class PriceGunComponent : Component
{
/// <summary>
/// The sound that plays when the price gun appraises an object.
/// </summary>
[DataField]
public SoundSpecifier AppraisalSound = new SoundPathSpecifier("/Audio/Items/appraiser.ogg");
}