using Content.Server.Sound.Components; using Robust.Shared.GameObjects; namespace Content.Server.Throwing { /// /// Simple sound emitter that emits sound on ThrowEvent /// [RegisterComponent] public class EmitSoundOnThrowComponent : BaseEmitSoundComponent { /// public override string Name => "EmitSoundOnThrow"; } }