mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
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;
|
|
}
|
|
}
|