13 lines
279 B
C#
13 lines
279 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.Sound.Components
|
|
{
|
|
/// <summary>
|
|
/// Simple sound emitter that emits sound on LandEvent
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public class EmitSoundOnLandComponent : BaseEmitSoundComponent
|
|
{
|
|
}
|
|
}
|