// SPDX-FileCopyrightText: 2025 GoobBot // SPDX-FileCopyrightText: 2025 Marcus F <199992874+thebiggestbruh@users.noreply.github.com> // // SPDX-License-Identifier: AGPL-3.0-or-later using Content.Shared.Atmos; namespace Content.Shared._Goobstation.Temperature; public sealed class TemperatureImmunityEvent(float currentTemperature) : EntityEventArgs { public float CurrentTemperature = currentTemperature; public readonly float IdealTemperature = Atmospherics.NormalBodyTemperature; }