перенос общих файлов из папки White в _White
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
namespace Content.Shared._White.EndOfRoundStats.CuffedTime;
|
||||
|
||||
public sealed class CuffedTimeStatEvent : EntityEventArgs
|
||||
{
|
||||
public TimeSpan Duration;
|
||||
|
||||
public CuffedTimeStatEvent(TimeSpan duration)
|
||||
{
|
||||
Duration = duration;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user