Files
tbd-station-14/Content.Server/Sound/Components/EmitSoundOnSpawnComponent.cs
2022-08-31 03:24:21 -07:00

10 lines
231 B
C#

namespace Content.Server.Sound.Components;
/// <summary>
/// Simple sound emitter that emits sound on entity spawn.
/// </summary>
[RegisterComponent]
public sealed class EmitSoundOnSpawnComponent : BaseEmitSoundComponent
{
}