Files
tbd-station-14/Content.Server/Ghost/Components/GhostComponent.cs
2021-07-16 17:37:09 -07:00

13 lines
280 B
C#

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