Files
tbd-station-14/Content.Server/Ghost/Components/GhostComponent.cs
2021-10-23 19:29:38 -07:00

14 lines
342 B
C#

using System;
using Content.Shared.Ghost;
using Robust.Shared.GameObjects;
namespace Content.Server.Ghost.Components
{
[RegisterComponent]
[ComponentReference(typeof(SharedGhostComponent))]
public sealed class GhostComponent : SharedGhostComponent
{
public TimeSpan TimeOfDeath { get; set; } = TimeSpan.Zero;
}
}