2024-01-28 18:37:24 +07:00
|
|
|
namespace Content.Shared._White.EndOfRoundStats.CuffedTime;
|
2023-05-25 02:13:10 +06:00
|
|
|
|
|
|
|
|
public sealed class CuffedTimeStatEvent : EntityEventArgs
|
|
|
|
|
{
|
|
|
|
|
public TimeSpan Duration;
|
|
|
|
|
|
|
|
|
|
public CuffedTimeStatEvent(TimeSpan duration)
|
|
|
|
|
{
|
|
|
|
|
Duration = duration;
|
|
|
|
|
}
|
|
|
|
|
}
|