| 123456789101112131415161718192021 |
- // SPDX-FileCopyrightText: 2024 gluesniffler <159397573+gluesniffler@users.noreply.github.com>
- // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
- //
- // SPDX-License-Identifier: AGPL-3.0-or-later
- namespace Content.Server._Shitmed.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;
- }
|