#4219 some small project tweaks

This commit is contained in:
Galactic Chimp
2021-06-27 21:55:18 +02:00
parent 4a2b9832ce
commit 6cae00bb13
9 changed files with 8 additions and 66 deletions

View File

@@ -0,0 +1,14 @@
using Robust.Shared.GameObjects;
namespace Content.Server.Sound.Components
{
/// <summary>
/// Simple sound emitter that emits sound on LandEvent
/// </summary>
[RegisterComponent]
public class EmitSoundOnLandComponent : BaseEmitSoundComponent
{
/// <inheritdoc />
public override string Name => "EmitSoundOnLand";
}
}