Files
crystall-punk-14/Content.Server/Ghost/Components/GhostComponent.cs

14 lines
297 B
C#
Raw Normal View History

using System;
2021-06-09 22:19:39 +02:00
using Content.Shared.Ghost;
2020-03-03 19:10:07 +01:00
using Robust.Shared.GameObjects;
#nullable enable
2021-06-09 22:19:39 +02:00
namespace Content.Server.Ghost.Components
2020-03-03 19:10:07 +01:00
{
[RegisterComponent]
public class GhostComponent : SharedGhostComponent
2020-03-03 19:10:07 +01:00
{
public TimeSpan TimeOfDeath { get; set; } = TimeSpan.Zero;
2020-03-03 19:10:07 +01:00
}
}