Delta-v/Content.Server/_DV/CosmicCult/Components/InVoidComponent.cs

16 lines
424 B
C#

using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
namespace Content.Server._DV.CosmicCult.Components;
[RegisterComponent]
[AutoGenerateComponentPause]
public sealed partial class InVoidComponent : Component
{
[DataField(customTypeSerializer: typeof(TimeOffsetSerializer))]
[AutoPausedField]
public TimeSpan ExitVoidTime = default!;
[DataField]
public EntityUid OriginalBody;
}