10 lines
308 B
C#
10 lines
308 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Sound.Components;
|
|
|
|
/// <summary>
|
|
/// Simple sound emitter that emits sound on LandEvent
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
public sealed partial class EmitSoundOnLandComponent : BaseEmitSoundComponent;
|