Entity pickup/drop sound components (#10233)

This commit is contained in:
Morb
2022-08-09 12:14:55 +03:00
committed by GitHub
parent e8de8df981
commit 4138fedca2
3 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace Content.Server.Sound.Components
{
/// <summary>
/// Simple sound emitter that emits sound on entity drop
/// </summary>
[RegisterComponent]
public sealed class EmitSoundOnDropComponent : BaseEmitSoundComponent
{
}
}

View File

@@ -0,0 +1,10 @@
namespace Content.Server.Sound.Components
{
/// <summary>
/// Simple sound emitter that emits sound on entity pickup
/// </summary>
[RegisterComponent]
public sealed class EmitSoundOnPickupComponent : BaseEmitSoundComponent
{
}
}