15 lines
521 B
C#
15 lines
521 B
C#
// SPDX-FileCopyrightText: 2025 GoobBot <uristmchands@proton.me>
|
|
// 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;
|
|
}
|