2023-05-25 02:13:10 +06:00
|
|
|
using Robust.Shared.Audio;
|
|
|
|
|
|
2024-01-28 18:37:24 +07:00
|
|
|
namespace Content.Shared._White.EndOfRoundStats.EmitSoundStatSystem;
|
2023-05-25 02:13:10 +06:00
|
|
|
|
|
|
|
|
public sealed class EmitSoundStatEvent : EntityEventArgs
|
|
|
|
|
{
|
|
|
|
|
public EntityUid Emitter;
|
|
|
|
|
public SoundSpecifier Sound;
|
|
|
|
|
|
|
|
|
|
public EmitSoundStatEvent(EntityUid emitter, SoundSpecifier sound)
|
|
|
|
|
{
|
|
|
|
|
Emitter = emitter;
|
|
|
|
|
Sound = sound;
|
|
|
|
|
}
|
|
|
|
|
}
|