// 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 { /// /// How long it takes to kill the entity. /// [DataField] public float DeathTime = 60; /// /// How long it has been since the delayed death timer started. /// public float DeathTimer; }