Files
tbd-station-14/Content.Server/Ghost/Components/GhostComponent.cs
DrSmugleaf 4f4d203d2e Make ghost component ECS (#4159)
* Make ghost component ECS

* Remove players and locations properties from ghost component

* Address reviews

* One more doc

* Fix client ghost component state method error
2021-06-18 09:56:23 +02:00

14 lines
297 B
C#

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