11 lines
254 B
C#
11 lines
254 B
C#
namespace Content.Server.Sound.Components
|
|
{
|
|
/// <summary>
|
|
/// Simple sound emitter that emits sound on entity drop
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed class EmitSoundOnDropComponent : BaseEmitSoundComponent
|
|
{
|
|
}
|
|
}
|