16 lines
356 B
C#
16 lines
356 B
C#
using Robust.Shared.Audio;
|
|
|
|
namespace Content.Shared._White.EndOfRoundStats.EmitSoundStatSystem;
|
|
|
|
public sealed class EmitSoundStatEvent : EntityEventArgs
|
|
{
|
|
public EntityUid Emitter;
|
|
public SoundSpecifier Sound;
|
|
|
|
public EmitSoundStatEvent(EntityUid emitter, SoundSpecifier sound)
|
|
{
|
|
Emitter = emitter;
|
|
Sound = sound;
|
|
}
|
|
}
|