Delta-v/Content.Shared/_Corvax/Respawn/RespawnResetEvent.cs

10 lines
230 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared._Corvax.Respawn;
[Serializable, NetSerializable]
public sealed class RespawnResetEvent(TimeSpan? time) : EntityEventArgs
{
public readonly TimeSpan? Time = time;
}