14 lines
342 B
C#
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;
|
|
}
|
|
}
|