2023-01-04 12:56:35 -06:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Sound.Components;
|
2022-08-31 12:24:21 +02:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Simple sound emitter that emits sound on entity spawn.
|
|
|
|
|
/// </summary>
|
2023-01-04 12:56:35 -06:00
|
|
|
[RegisterComponent, NetworkedComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class EmitSoundOnSpawnComponent : BaseEmitSoundComponent
|
2022-08-31 12:24:21 +02:00
|
|
|
{
|
|
|
|
|
}
|