Files
wwdpublic/Content.Server/DelayedDeath/DelayedDeathComponent.cs
2024-11-21 17:49:04 +07:00

16 lines
392 B
C#

namespace Content.Server.DelayedDeath;
[RegisterComponent]
public sealed partial class DelayedDeathComponent : Component
{
/// <summary>
/// How long it takes to kill the entity.
/// </summary>
[DataField]
public float DeathTime = 60;
/// <summary>
/// How long it has been since the delayed death timer started.
/// </summary>
public float DeathTimer;
}